﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-gutter: stable;
    width: 100%;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #1A1A1A;
    color: #1A1A1A;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Navigation */
.nav-wrapper {
    width: 100%;
    background: #1A1A1A;
    position: fixed;
    top: 0;
    z-index: 1001;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    height: 100px;
    padding: 0 100px;
    background: #1A1A1A;
}

.nav-logo {
    height: 52px;
    width: auto;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-right: 60px;
}

.nav-item-wrapper {
    position: relative;
}

.nav-item {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #D13736;
}

.nav-item.active {
    color: #D13736;
}

.nav-item-wrapper:hover .nav-item {
    color: #D13736;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 20px;
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.nav-item-wrapper:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-dropdown-item:hover {
    background: rgba(209, 55, 54, 0.1);
    color: #D13736;
}

.nav-spacer {
    flex: 1;
}

.nav-lang {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
}

.nav-lang-item {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-lang-item:hover,
.nav-lang-item.active {
    color: #D13736;
}

.nav-lang-sep {
    color: rgba(255, 255, 255, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: relative;
    width: 24px;
    height: 18px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    position: absolute;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

/* Transform to X when active */
.hamburger.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #1A1A1A;
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 100px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: #FFFFFF;
    cursor: pointer;
}

.mobile-menu-item {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-item.active {
    color: #D13736;
}

.mobile-menu-item-wrapper {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-item-wrapper .mobile-menu-item {
    border-bottom: none;
}

.mobile-dropdown {
    padding-left: 20px;
    padding-bottom: 8px;
}

.mobile-dropdown-item {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 12px 0;
}

.mobile-dropdown-item:hover {
    color: #D13736;
}

.mobile-menu-lang {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 0 48px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    width: 100%;
    background: #1A1A1A;
    padding-top: 100px;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    height: 700px;
    padding: 0 100px;
}

.hero-left {
    width: 780px;
    padding: 0;
}

.hero-since {
    font-size: 11px;
    font-weight: 700;
    color: #999999;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 180px;
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -8px;
    margin-bottom: 24px;
}

.hero-title .white {
    color: #FFFFFF;
}

.hero-title .red {
    color: #D13736;
}

.hero-cities {
    padding-top: 60px;
}

.hero-city-row {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 2px;
}

.hero-city-row .dot {
    color: #D13736;
}

.hero-cities {
    display: none;
}

.hero-right {
    width: 460px;
    height: 482px;
    background: #D13736;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    align-self: center;
}

.hero-news {
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 60px;
}

.news-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-date {
    font-size: 16px;
    color: rgba(248, 248, 248, 0.8);
    letter-spacing: 1px;
}

.news-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    max-width: 100%;
}

.news-link {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 2px;
}

/* Statement Section */
.statement {
    width: 100%;
    background: #F8F8F8;
}

.statement-horizontal {
    padding-top: 100px;
}

.statement-category {
    padding-top: 0 !important;
}

.statement-category .statement-inner {
    padding: 60px 100px;
    gap: 16px;
}

.statement-category .statement-text {
    font-size: 28px;
    max-width: 900px;
    line-height: 1.6;
}

.statement-category .red-bar-horizontal {
    width: 80px;
    height: 6px;
}

.statement-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 140px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.red-bar {
    width: 8px;
    height: 80px;
    background: #D13736;
}

.red-bar-horizontal {
    width: 120px;
    height: 8px;
}

.statement-text {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #1A1A1A;
    text-align: center;
    line-height: 1.5;
    max-width: 1100px;
}

.statement-cities {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #D13736;
    letter-spacing: 2px;
    margin-top: 80px;
}

.statement-cities .dot {
    color: #1A1A1A;
}

/* Separator */
.separator {
    width: 100%;
    background: #F8F8F8;
}

.separator-inner {
    max-width: 1440px;
    margin: 0 auto;
    height: 2px;
    background: #E8E8E8;
}

/* Blog Section */
.blog {
    width: 100%;
    background: #F8F8F8;
}

.blog-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 100px;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 80px;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    color: #D13736;
    letter-spacing: 4px;
}

.section-title {
    font-size: 72px;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: -2px;
    text-align: center;
}

.blog-grid {
    width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 380px);
    gap: 40px;
}

.blog-card {
    background: #FFFFFF;
    border-radius: 4px;
    overflow: hidden;
}

.blog-image {
    width: 380px;
    height: 240px;
    background: #2A2A2A;
}

.blog-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-title {
    font-size: 26px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.2;
    margin: 0;
}

.blog-date {
    font-size: 13px;
    font-weight: 400;
    color: #D13736;
    letter-spacing: 2px;
    margin: 0;
}

.blog-desc {
    font-size: 16px;
    color: #6D6E71;
    line-height: 1.7;
    margin: 0;
}

.blog-link {
    font-size: 14px;
    font-weight: 400;
    color: #D13736;
    text-decoration: none;
    letter-spacing: 2px;
    display: inline-block;
}

/* In The News / Testimonial Section */
.testimonial {
    width: 100%;
    background: #1A1A1A;
}

.testimonial-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 140px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.testimonial-inner .section-header {
    margin-bottom: 0;
}

.section-label-light {
    font-size: 14px;
    font-weight: 700;
    color: #D13736;
    letter-spacing: 4px;
    text-align: center;
}

.quote-icon {
    display: flex;
    justify-content: center;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.6;
    max-width: 1000px;
}

.testimonial-author {
    font-size: 16px;
    color: #999999;
}

/* CTA Section */
.cta {
    width: 100%;
    background: #D13736;
}

.cta-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.cta-heading {
    text-align: center;
}

.cta-question {
    font-size: 48px;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: 2px;
    margin: 0;
}

.cta-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1000px;
}

.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 40px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    color: #1A1A1A;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-pill:hover {
    background: #1A1A1A;
    color: #FFFFFF;
    border-color: #1A1A1A;
}

.cta-pill-arrow {
    font-size: 18px;
    transition: transform 0.3s;
}

.cta-pill:hover .cta-pill-arrow {
    transform: translateX(4px);
}

.cta-contact {
    margin-top: 8px;
}

.cta-button {
    background: #D13736;
    border-radius: 4px;
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 2px;
    border: 2px solid #FFFFFF;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #FFFFFF;
    color: #D13736;
    border-color: #FFFFFF;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #D13736;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.8;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social .social-icon {
    width: 36px;
    height: 36px;
    background: #333333;
    font-size: 14px;
}

.footer-social .social-icon:hover {
    background: #D13736;
    opacity: 1;
}

/* Footer */
.footer {
    width: 100%;
    background: #1A1A1A;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}

.footer-logo {
    height: 52px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.footer-tagline {
    font-size: 17px;
    color: #999999;
    line-height: 1.6;
    letter-spacing: 1px;
}

.footer-right {
    display: flex;
    gap: 100px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-head {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 2px;
}

.footer-link {
    font-size: 15px;
    color: #999999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #FFFFFF;
}

/* What We Do Section */
.what-we-do {
    width: 100%;
    background: #F8F8F8;
}

.what-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 140px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}

.what-title {
    font-size: 140px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 0.9;
    letter-spacing: -6px;
    width: 1200px;
    text-align: left;
}

.what-title .mobile-title {
    display: none;
}

.what-title .desktop-title {
    display: block;
}

.what-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 1240px;
}

.what-row {
    display: flex;
    gap: 2px;
}

.what-card {
    display: flex;
    flex-direction: column;
    padding: 60px;
}

.what-card.large-red {
    background: #D13736;
    width: 819px;
    height: 500px;
}

.what-card.tall-dark {
    background: #1A1A1A;
    width: 419px;
    height: 500px;
}

.what-card.small-light {
    background: #F8F8F8;
    width: 419px;
    height: 400px;
}

.what-card.wide-dark {
    background: #1A1A1A;
    width: 819px;
    height: 400px;
}

.card-number {
    font-size: 140px;
    font-weight: 700;
    letter-spacing: -6px;
    margin-bottom: 0;
}

.card-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
}

/* Work Section */
.our-work {
    width: 100%;
    background: #D13736;
    display: flex;
}

.work-inner {
    display: flex;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    height: 700px;
}

.work-left {
    width: 722px;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.work-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.work-bottom {
    display: none;
}

.section-label-white {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 4px;
}

.work-title {
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -1.5px;
    max-width: 520px;
}

.work-description {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.7;
    max-width: 480px;
    opacity: 0.9;
}

.work-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 2px;
    transition: gap 0.3s;
}

.work-link:hover {
    gap: 12px;
}

.work-link .arrow {
    font-size: 18px;
}

.work-nav {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FFFFFF;
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 0.3s;
}

.nav-dot.active {
    opacity: 1;
}

.work-right {
    width: 618px;
    background: #2A2A2A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Research Section */
.research {
    width: 100%;
    background: #FFFFFF;
}

.research-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 140px 100px;
}

.book-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.book {
    width: 340px;
    height: 500px;
    border-radius: 4px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.book.teal {
    background: #2C5F7C;
}

.book.plum {
    background: #8B4F6F;
}

.book.sage {
    background: #5A7C65;
}

.book-title {
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 0.9;
    letter-spacing: -2px;
    text-align: center;
}

.book-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.book-year {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 6px;
}

.book-brand {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    opacity: 0.8;
    letter-spacing: 3px;
}

.book-extras {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-top: 40px;
}

.book-extra-mobile {
    display: none;
}

.book-extra {
    width: 340px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.book-description {
    font-size: 16px;
    color: #6D6E71;
    line-height: 1.6;
    text-align: center;
}

.book-link {
    font-size: 14px;
    font-weight: 700;
    color: #D13736;
    text-decoration: none;
    letter-spacing: 1px;
    text-align: center;
}

/* AI & Technology Section */
.ai-tech {
    width: 100%;
    background: #FFFFFF;
}

.ai-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 140px 100px;
}

.ai-content {
    width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.featured-banner {
    width: 1240px;
    height: 500px;
    background: #1A1A1A;
    border-radius: 4px;
    display: flex;
}

.featured-screenshot {
    width: 711px;
    height: 500px;
    background: #2A2A2A;
    border-radius: 4px;
}

.featured-info {
    width: 529px;
    height: 500px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-tag {
    font-size: 12px;
    font-weight: 700;
    color: #D13736;
    letter-spacing: 3px;
}

.featured-title {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
}

.featured-subtitle {
    font-size: 16px;
    color: #CCCCCC;
}

.featured-desc {
    font-size: 15px;
    color: #999999;
    line-height: 1.6;
    max-width: 100%;
}

.featured-link {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 24px;
}

.featured-link-text {
    font-size: 13px;
    font-weight: 700;
    color: #D13736;
    letter-spacing: 2px;
}

.featured-nav {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.solutions-swipe {
    display: none;
}

.ai-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.ai-card {
    width: 360px;
    height: 280px;
    background: #D13736;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ai-card-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ai-label {
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    opacity: 0.7;
    letter-spacing: 3px;
}

.ai-name {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.ai-link {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ai-link-text {
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 2px;
}

/* Tablet/Small Desktop Responsive */
@media (min-width: 769px) and (max-width: 1439px) {
    /* Universal container width adjustment */
    .nav, .hero-inner, .statement-inner, .separator-inner, 
    .work-inner, .research-inner, .ai-inner, 
    .blog-inner, .testimonial-inner, .cta-inner, .footer-inner,
    .what-inner {
        max-width: 100%;
    }

    /* Horizontal padding: reduce from 100px to 60px */
    .nav {
        padding: 0 60px;
    }

    .hero-inner {
        padding: 0 60px;
        justify-content: space-between;
        gap: 40px;
        height: 630px;
    }

    .statement-inner {
        padding: 100px 60px;
    }

    .blog-inner {
        padding: 80px 60px;
    }

    .testimonial-inner {
        padding: 100px 60px;
    }

    .cta-inner {
        padding: 80px 60px;
    }

    .footer-inner {
        padding: 80px 60px;
    }

    .what-inner {
        padding: 100px 60px;
    }

    .research-inner {
        padding: 100px 60px;
    }

    .ai-inner {
        padding: 100px 60px;
    }

    /* Hero adjustments */
    .hero-left {
        width: 62%;
    }

    .hero-right {
        width: 36%;
        height: 434px;
    }

    .hero-title {
        font-size: 162px;
        letter-spacing: -7px;
    }

    .hero-since {
        font-size: 10px;
    }

    .news-date {
        font-size: 14px;
    }

    .news-title {
        font-size: 43px;
    }

    .news-link {
        font-size: 14px;
    }

    /* Work section special handling */
    .work-left {
        width: 55%;
        padding: 80px 50px;
    }

    .work-right {
        width: 43%;
    }

    /* Featured banner proportions */
    .featured-screenshot {
        width: 58%;
    }

    .featured-info {
        width: 42%;
    }

    /* Fixed-width content containers should flex */
    .what-title {
        width: 100%;
        max-width: 100%;
    }

    .what-grid {
        width: 100%;
        max-width: 100%;
    }

    .blog-grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .ai-content {
        width: 100%;
        max-width: 100%;
    }

    .featured-banner {
        width: 100%;
        max-width: 100%;
    }

    /* What We Do cards should be proportional */
    .what-card.large-red {
        width: 66%;
    }

    .what-card.tall-dark {
        width: 34%;
    }

    .what-card.small-light {
        width: 34%;
    }

    .what-card.wide-dark {
        width: 66%;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body, html {
        max-width: 100vw;
        overflow-x: hidden;
    }

    section {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .nav {
        padding: 0 20px;
        height: 80px;
    }

    .nav-logo {
        height: 42px;
    }

    .nav-menu, .nav-lang {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        flex-direction: column;
        height: auto;
    }

    .hero-inner {
        flex-direction: column;
        height: auto;
        padding: 0;
    }

    .hero-left, .hero-right {
        width: 100%;
        padding: 40px 24px;
    }

    .hero-since {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: -3px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-cities {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 11px;
        font-weight: 700;
        color: #FFFFFF;
        letter-spacing: 1px;
        margin-bottom: 40px;
    }

    .hero-cities .dot {
        color: #D13736;
    }

    .statement-cities {
        display: none;
    }

    .hero-right {
        height: auto;
    }

    .hero-news {
        padding: 24px;
        gap: 40px;
    }

    .news-title {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .statement-inner {
        padding: 60px 24px;
    }

    .statement-text {
        font-size: 24px;
    }

    .statement-cities {
        flex-wrap: wrap;
        font-size: 14px;
        gap: 12px;
    }

    .section-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .blog-inner {
        padding: 60px 24px;
    }

    .blog-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card {
        width: 100%;
    }

    .blog-image {
        width: 100%;
        height: 160px;
    }

    .blog-content {
        padding: 24px;
        gap: 16px;
    }

    .blog-title {
        font-size: 18px;
    }

    .blog-desc {
        font-size: 14px;
    }

    .testimonial-inner {
        padding: 60px 24px;
    }

    .testimonial-quote {
        font-size: 18px;
    }

    .cta-inner {
        padding: 60px 24px;
    }

    .cta-question {
        font-size: 28px;
    }

    .cta-services {
        max-width: 100%;
    }

    .cta-pill {
        padding: 10px 20px;
        font-size: 14px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 32px;
        padding: 40px 24px;
    }

    .footer-right {
        flex-direction: column;
        gap: 32px;
    }

    .what-inner {
        padding: 60px 24px;
        gap: 60px;
    }

    .what-title {
        font-size: 28px;
        font-weight: 400;
        text-align: left;
        width: 100%;
        letter-spacing: -1px;
    }

    .what-title .desktop-title {
        display: none;
    }

    .what-title .mobile-title {
        display: block;
    }

    .what-grid {
        width: 100%;
        gap: 16px;
    }

    .what-row {
        flex-direction: column;
        gap: 16px;
    }

    .what-card {
        padding: 40px;
        min-height: 200px;
    }

    .what-card.large-red,
    .what-card.tall-dark,
    .what-card.small-light,
    .what-card.wide-dark {
        width: 100% !important;
        height: auto !important;
    }

    .card-number {
        font-size: 80px;
        letter-spacing: -3px;
    }

    .card-title {
        font-size: 24px !important;
        letter-spacing: -0.5px;
    }

    .our-work {
        flex-direction: column;
        height: auto;
    }

    .work-inner {
        flex-direction: column;
        height: auto;
    }

    .work-left {
        width: 100%;
        padding: 60px 24px 40px 24px;
    }

    .work-link-desktop,
    .work-nav-desktop {
        display: none !important;
    }

    .work-right {
        width: 100%;
        padding: 0;
        min-height: 300px;
    }

    .work-bottom {
        display: flex;
        justify-content: flex-start;
        padding: 40px 24px 60px 24px;
    }

    .work-title {
        font-size: 36px;
        max-width: 100%;
    }

    .work-description {
        max-width: 100%;
    }

    .research-inner {
        padding: 60px 24px;
    }

    .book-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .book-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .book {
        width: 180px;
        height: 260px;
        padding: 24px 20px;
    }

    .book-title {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .book-year {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .book-brand {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .book-extras {
        display: none;
    }

    .book-extra-mobile {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .ai-inner {
        padding: 60px 24px;
    }

    .ai-content {
        width: 100%;
    }

    .featured-banner {
        width: 100%;
        height: auto;
        flex-direction: column;
    }

    .featured-screenshot {
        width: 100%;
        height: 200px;
    }

    .featured-info {
        width: 100%;
        height: auto;
        padding: 24px;
    }

    .featured-tag {
        letter-spacing: 2px;
    }

    .featured-link-text {
        letter-spacing: 1px;
    }

    .featured-desc {
        width: 100%;
    }

    .featured-nav {
        display: none;
    }

    .solutions-swipe {
        display: none;
    }

    .ai-cards {
        flex-direction: column;
        gap: 16px;
    }

    .ai-card {
        width: 100%;
        height: 180px;
        padding: 24px;
    }

    .ai-label {
        letter-spacing: 2px;
    }

    .ai-link-text {
        letter-spacing: 1px;
    }

    .ai-name {
        font-size: 22px;
    }
}

/* Blog List Styles */
.blog-hero {
    background-color: #211111;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.blog-hero-inner {
    position: relative;
    z-index: 10;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 100px 64px;
    width: 100%;
}

.blog-hero-tag {
    display: inline-block;
    background: #D13736;
    color: #FFFFFF;
    padding: 4px 16px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 32px;
}

.blog-hero-title {
    font-size: 96px;
    font-weight: 900;
    letter-spacing: -4px;
    color: #FFFFFF;
    margin-bottom: 32px;
    line-height: 1;
}

.blog-hero-title .title-emphasis {
    color: #D13736;
}

.blog-hero-title .title-dot {
    color: #FFFFFF;
}

/* Geometric Background Elements */
.geometric-bg {
    background-color: #211111;
    position: relative;
    overflow: hidden;
}

.trail-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #ea2a33, transparent);
    height: 1px;
    width: 100%;
    opacity: 0.3;
}

.diagonal-path {
    position: absolute;
    width: 200%;
    height: 200%;
    border-left: 1px solid rgba(234, 42, 51, 0.15);
    border-top: 1px solid rgba(234, 42, 51, 0.15);
    transform: rotate(-35deg) translateY(-20%) translateX(-10%);
}

.glow-effect {
    position: absolute;
    top: 25%;
    left: 25%;
    width: 384px;
    height: 384px;
    background: rgba(234, 42, 51, 0.05);
    border-radius: 50%;
    filter: blur(120px);
}

/* Blog Main Content */
.blog-main {
    width: 100%;
    max-width: 100%;
    background: #FFFFFF;
    padding: 96px 0;
}

.blog-content-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
    display: flex;
    flex-direction: row-reverse;
    gap: 96px;
}

/* Blog Articles */
.blog-articles {
    flex: 2;
}

.article-list {
    display: flex;
    flex-direction: column;
}

.blog-article {
    padding: 64px 0;
    border-bottom: 1px solid #e5e5e5;
}

.blog-article:first-child {
    padding-top: 0;
}

.article-content {
    display: flex;
    gap: 40px;
}

.article-image-wrapper {
    width: 288px;
    flex-shrink: 0;
}

.article-image-container {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f5f5f5;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.7s;
}

.blog-article:hover .article-image {
    filter: grayscale(0%);
}

.article-text {
    flex-grow: 1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 900;
    color: #D13736;
    margin-bottom: 20px;
}

.article-category {
    color: #D13736;
}

.article-meta-divider {
    width: 6px;
    height: 1px;
    background: #d4d4d4;
}

.article-read-time {
    color: #a3a3a3;
}

.article-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    transition: color 0.3s;
}

.article-title a {
    color: #1A1A1A;
    text-decoration: none;
}

.blog-article:hover .article-title {
    color: #D13736;
}

.article-description {
    color: #737373;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f5f5f5;
    padding-top: 24px;
}

.article-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1A1A1A;
}

.article-date {
    font-size: 10px;
    color: #a3a3a3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.article-read-more {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #D13736;
    text-decoration: none;
    transition: color 0.3s;
}

.article-read-more:hover {
    color: #1A1A1A;
}

/* Sidebar */
.blog-sidebar {
    flex: 1;
}

.sticky-sidebar {
    position: sticky;
    top: 96px;
    height: fit-content;
}

.sidebar-sections {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.sidebar-section-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 900;
    color: #a3a3a3;
    margin-bottom: 40px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 16px;
}

.sidebar-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding-left: 16px;
    transition: color 0.3s;
}

.sidebar-nav-item a {
    color: #1A1A1A;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.sidebar-nav-item:hover a {
    color: #D13736;
}

.sidebar-nav-item.active {
    color: #D13736;
    border-left: 2px solid #D13736;
}

.sidebar-nav-item.active a {
    color: #D13736;
}

.sidebar-nav-count {
    font-size: 10px;
    opacity: 0.4;
}

/* Newsletter Card */
.newsletter-card {
    padding: 40px;
    background: #111111;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.newsletter-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 96px;
    height: 96px;
    background: rgba(234, 42, 51, 0.2);
    transform: translateX(48px) translateY(-48px) rotate(45deg);
}

.newsletter-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.newsletter-description {
    color: #a3a3a3;
    font-size: 12px;
    margin-bottom: 32px;
    line-height: 1.5;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsletter-input {
    width: 100%;
    background: #1A1A1A;
    border: none;
    padding: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.newsletter-input::placeholder {
    color: #404040;
}

.newsletter-input:focus {
    outline: 1px solid #D13736;
}

.newsletter-submit {
    width: 100%;
    background: #D13736;
    color: #FFFFFF;
    font-weight: 900;
    padding: 16px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-submit:hover {
    background: #FFFFFF;
    color: #111111;
}

/* Pagination */
.blog-pagination {
    padding: 96px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.pagination-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    transition: all 0.3s;
    border: 1px solid transparent;
    text-decoration: none;
    color: #1A1A1A;
}

.pagination-item.active {
    border: 1px solid #e5e5e5;
    color: #D13736;
}

.pagination-item:hover:not(.active) {
    color: #D13736;
}

.pagination-item.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.pagination-ellipsis {
    cursor: default;
    color: #737373;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .blog-content-wrapper {
        flex-direction: column-reverse;
        gap: 64px;
    }

    .blog-sidebar {
        position: relative;
    }

    .sticky-sidebar {
        position: relative;
        top: 0;
    }

    .article-content {
        flex-direction: column;
    }

    .article-image-wrapper {
        width: 100%;
    }

    .article-image-container {
        aspect-ratio: 16/9;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        min-height: 300px;
    }

    .blog-hero-inner {
        padding: 60px 24px 48px;
    }

    .blog-hero-title {
        font-size: 48px;
    }

    .trail-line {
        height: 1px;
        opacity: 0.4;
    }
    
    .diagonal-path {
        width: 200%;
        height: 200%;
        border-left: 1px solid rgba(234, 42, 51, 0.2);
        border-top: 1px solid rgba(234, 42, 51, 0.2);
    }

    .glow-effect {
        width: 250px;
        height: 250px;
        filter: blur(80px);
        opacity: 1;
    }

    .blog-main {
        padding: 64px 0;
    }

    .blog-content-wrapper {
        padding: 0 24px;
    }

    .blog-article {
        padding: 48px 0;
    }

    .article-image-wrapper {
        width: 100%;
        display: block;
    }

    .article-image-container {
        width: 100%;
        aspect-ratio: 16/9;
        min-height: 200px;
        display: block;
    }

    .article-image {
        width: 100%;
        height: 100%;
        display: block;
    }

    .article-title {
        font-size: 24px;
    }
}

/* Blog Post Single Styles */
.blog-post {
    margin-top: 100px;
}

.post-header {
    background: #FFFFFF;
    padding: 80px 0 64px;
}

.post-header-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 100px;
}

.post-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.post-category {
    display: inline-block;
    background: #D13736;
    color: #FFFFFF;
    padding: 4px 16px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    text-decoration: none;
    transition: background 0.3s;
}

.post-category:hover {
    background: #EA2A33;
}

.post-meta-divider {
    width: 4px;
    height: 4px;
    background: #a3a3a3;
    border-radius: 50%;
}

.post-read-time {
    font-size: 14px;
    color: #a3a3a3;
    font-weight: 400;
}

.post-title {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    color: #1A1A1A;
    margin-bottom: 32px;
}

.post-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #737373;
}

.post-author {
    font-weight: 700;
    color: #1A1A1A;
}

.post-date {
    font-weight: 400;
}

.post-featured-image {
    width: 100%;
    background: #f5f5f5;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

.post-content {
    background: #FFFFFF;
    padding: 80px 0;
}

.post-content-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 100px;
    font-size: 18px;
    line-height: 1.8;
    color: #1A1A1A;
}

.post-content-inner img {
    display: block;
    max-width: calc(100% + 200px); /* allow up to full outer container width */
    height: auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.post-content-inner h1,
.post-content-inner h2,
.post-content-inner h3,
.post-content-inner h4 {
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 24px;
    line-height: 1.3;
    color: #1A1A1A;
}

.post-content-inner h1 {
    font-size: 48px;
    letter-spacing: -1px;
}

.post-content-inner h2 {
    font-size: 36px;
    letter-spacing: -0.5px;
}

.post-content-inner h3 {
    font-size: 28px;
}

.post-content-inner h4 {
    font-size: 22px;
}

.post-content-inner p {
    margin-bottom: 24px;
}

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

.post-content-inner li {
    margin-bottom: 12px;
}

.post-content-inner strong {
    font-weight: 700;
    color: #1A1A1A;
}

.post-content-inner em {
    font-style: italic;
}

.post-content-inner a {
    color: #D13736;
    text-decoration: underline;
    transition: color 0.3s;
}

.post-content-inner a:hover {
    color: #EA2A33;
}

.post-content-inner blockquote {
    border-left: 4px solid #D13736;
    padding-left: 24px;
    margin: 32px 0;
    font-size: 20px;
    font-style: italic;
    color: #737373;
}

.post-content-inner code {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 16px;
}

.post-content-inner pre {
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 24px;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 24px;
}

.post-content-inner pre code {
    background: none;
    padding: 0;
    color: #FFFFFF;
}

.post-footer {
    background: #FFFFFF;
    padding: 0 0 80px;
    border-bottom: 1px solid #e5e5e5;
}

.post-footer-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 100px;
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.post-tags-label {
    font-size: 14px;
    font-weight: 700;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.post-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #f5f5f5;
    color: #1A1A1A;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.post-tag:hover {
    background: #D13736;
    color: #FFFFFF;
}

.post-end-section {
    background: #FFFFFF;
    padding: 96px 0;
    border-top: 1px solid #e5e5e5;
}

.post-end-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 100px;
    text-align: center;
}

.post-end-divider {
    width: 80px;
    height: 2px;
    background: #D13736;
    margin: 0 auto 32px;
}

.post-end-text {
    font-size: 20px;
    color: #737373;
    margin-bottom: 32px;
    line-height: 1.6;
}

.post-end-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 48px;
    background: #D13736;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s;
}

.post-end-button:hover {
    background: #EA2A33;
}

.related-posts {
    background: #FFFFFF;
    padding: 96px 0;
}

.related-posts-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

.related-posts-title {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #1A1A1A;
    margin-bottom: 48px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.related-post-card {
    display: block;
    text-decoration: none;
    transition: transform 0.3s;
}

.related-post-card:hover {
    transform: translateY(-8px);
}

.related-post-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 24px;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.7s;
}

.related-post-card:hover .related-post-image img {
    filter: grayscale(0%);
}

.related-post-content {
    padding: 0;
}

.related-post-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #D13736;
    margin-bottom: 12px;
}

.related-post-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.related-post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #a3a3a3;
}

.related-posts-footer {
    margin-top: 48px;
    text-align: center;
}

.related-posts-footer .back-to-blog {
    display: inline-flex;
    align-items: center;
    padding: 14px 40px;
    background: #1A1A1A;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s;
}

.related-posts-footer .back-to-blog:hover {
    background: #D13736;
}

@media (max-width: 1024px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .blog-post {
        margin-top: 100px;
    }

    .post-header {
        padding: 48px 0 32px;
    }

    .post-header-inner {
        padding: 0 24px;
    }

    .post-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .post-featured-image img {
        max-height: 300px;
    }

    .post-content {
        padding: 48px 0;
    }

    .post-content-inner {
        padding: 0 24px;
        font-size: 16px;
    }

    .post-content-inner h1 {
        font-size: 32px;
    }

    .post-content-inner h2 {
        font-size: 28px;
    }

    .post-content-inner h3 {
        font-size: 22px;
    }

    .post-content-inner h4 {
        font-size: 18px;
    }

    .post-footer {
        padding: 0 0 48px;
    }

    .post-footer-inner {
        padding: 0 24px;
    }

    .post-end-section {
        padding: 64px 0;
    }

    .post-end-inner {
        padding: 0 24px;
    }

    .post-end-text {
        font-size: 16px;
    }

    .post-end-button {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 13px;
    }

    .related-posts {
        padding: 64px 0;
    }

    .related-posts-inner {
        padding: 0 24px;
    }

    .related-posts-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .related-post-title {
        font-size: 18px;
    }
}

/* Consumer Sentiment Section */
.consumer-sentiment {
    width: 100%;
    background: #F8F8F8;
    padding: 96px 0;
}

.consumer-sentiment-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

.consumer-sentiment-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 64px;
}

.consumer-sentiment-text {
    max-width: 640px;
}

.consumer-sentiment-title {
    font-size: 36px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.consumer-sentiment-description {
    font-size: 16px;
    color: #737373;
    line-height: 1.6;
}

.consumer-sentiment-link {
    color: #D13736;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.consumer-sentiment-link .arrow {
    transition: transform 0.3s ease;
}

.consumer-sentiment-link:hover .arrow {
    transform: translateX(4px);
}

.consumer-sentiment-reports {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.report-card {
    position: relative;
    width: 100%;
    padding-bottom: 133.33%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.report-card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
}

.report-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    z-index: 1;
    display: block;
}

.report-card:hover .report-card-image {
    transform: scale(1.1);
}

.report-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-color, rgba(0, 77, 87, 0.8));
    transition: background 0.3s ease;
    z-index: 5;
}

.report-card:nth-child(1) .report-card-overlay {
    background: rgba(0, 77, 87, 0.8);
}

.report-card:nth-child(1):hover .report-card-overlay {
    background: rgba(0, 77, 87, 0.7);
}

.report-card:nth-child(2) .report-card-overlay {
    background: rgba(59, 50, 123, 0.8);
}

.report-card:nth-child(2):hover .report-card-overlay {
    background: rgba(59, 50, 123, 0.7);
}

.report-card:nth-child(3) .report-card-overlay {
    background: rgba(176, 106, 90, 0.8);
}

.report-card:nth-child(3):hover .report-card-overlay {
    background: rgba(176, 106, 90, 0.7);
}

.report-card-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.report-card-bar {
    width: 48px;
    height: 4px;
    background: #FFFFFF;
}

.report-card-number {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.report-card-bottom {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.report-card-title {
    font-size: 30px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
}

.report-card-link {
    font-size: 11px;
    font-weight: 700;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
    width: fit-content;
    text-decoration: none;
}

/* Trade Sentiment Section */
.trade-sentiment {
    width: 100%;
    background: #FFFFFF;
    padding: 96px 0;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}

.trade-sentiment-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

.trade-sentiment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.trade-sentiment-tag {
    color: #D13736;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.trade-sentiment-title {
    font-size: 40px;
    font-weight: 900;
    color: #1A1A1A;
    margin-bottom: 24px;
    font-family: 'Space Grotesk', sans-serif;
}

.trade-sentiment-description {
    font-size: 18px;
    color: #737373;
    line-height: 1.6;
    margin-bottom: 32px;
}

.trade-sentiment-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.trade-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #F8F8F8;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
}

.trade-feature-icon {
    font-size: 24px;
    padding: 8px;
    background: rgba(209, 55, 54, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.trade-feature-text {
    flex: 1;
}

.trade-feature-title {
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 4px;
    font-size: 16px;
}

.trade-feature-description {
    font-size: 14px;
    color: #737373;
}

.trade-sentiment-button {
    display: inline-block;
    padding: 12px 32px;
    background: #1A1A1A;
    color: #FFFFFF;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.trade-sentiment-button:hover {
    transform: scale(1.05);
}

.trade-sentiment-right {
    position: relative;
}

.trade-stats-card {
    position: relative;
    background: #FFFFFF;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid #E5E5E5;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.trade-stats-card::before {
    content: '';
    position: absolute;
    inset: -16px;
    background: rgba(209, 55, 54, 0.2);
    border-radius: 24px;
    filter: blur(40px);
    opacity: 0.2;
    z-index: -1;
}

.trade-stats-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.trade-stats-title {
    font-size: 12px;
    font-weight: 700;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.trade-stats-change {
    color: #D13736;
    font-weight: 900;
    font-size: 14px;
}

.trade-stats-regions {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.trade-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trade-stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trade-stat-name {
    font-size: 12px;
    font-weight: 700;
    color: #737373;
}

.trade-stat-percentage {
    font-size: 12px;
    font-weight: 700;
    color: #737373;
}

.trade-stat-bar {
    width: 100%;
    height: 8px;
    background: #F8F8F8;
    border-radius: 9999px;
    overflow: hidden;
}

.trade-stat-fill {
    height: 100%;
    background: #D13736;
}

.trade-stats-quote {
    padding: 24px;
    background: #F8F8F8;
    border-radius: 16px;
}

.trade-quote-text {
    font-size: 14px;
    color: #737373;
    font-style: italic;
    margin-bottom: 16px;
}

.trade-quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trade-quote-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #E5E5E5;
    flex-shrink: 0;
}

.trade-quote-name {
    font-size: 11px;
    font-weight: 700;
    color: #737373;
}

/* Responsive Design for Research Sections */
@media (max-width: 1024px) {
    .consumer-sentiment-inner,
    .trade-sentiment-inner {
        padding: 0 40px;
    }

    .consumer-sentiment-reports {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .report-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .trade-sentiment-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .consumer-sentiment,
    .trade-sentiment {
        padding: 64px 0;
    }

    .consumer-sentiment-inner,
    .trade-sentiment-inner {
        padding: 0 24px;
    }

    .consumer-sentiment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 40px;
    }

    .consumer-sentiment-title {
        font-size: 28px;
    }

    .trade-sentiment-title {
        font-size: 32px;
    }

    .report-card {
        max-width: 300px !important;
        width: 100%;
        margin: 0 auto;
        padding-bottom: 133.33% !important;
    }

    .report-card-content {
        padding: 24px !important;
    }

    .report-card-image {
        object-position: center;
    }

    .report-card-title {
        font-size: 20px !important;
        line-height: 1.1;
    }

    .report-card-number {
        font-size: 9px !important;
        letter-spacing: 1.5px;
    }

    .report-card-bar {
        width: 36px !important;
        height: 3px !important;
    }

    .report-card-top {
        gap: 12px;
    }

    .report-card-bottom {
        gap: 24px !important;
    }

    .report-card-link {
        font-size: 9px !important;
        letter-spacing: 1.5px;
        gap: 6px;
    }
}
/* ===================================
   WHITEPAPER SECTION
   =================================== */

.whitepaper-section {
    background: #FFFFFF;
    padding: 96px 0;
    border-top: 1px solid #F5F5F5;
    border-bottom: 1px solid #F5F5F5;
}

.whitepaper-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.whitepaper-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #1A1A1A;
    border-radius: 24px;
    overflow: hidden;
    align-items: stretch;
}

.whitepaper-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 80px;
}

.whitepaper-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #D13736;
    margin-bottom: 16px;
}

.whitepaper-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
    margin: 0 0 24px 0;
}

.whitepaper-subtitle {
    display: block;
    color: #D13736;
    font-style: italic;
}

.whitepaper-description {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.6;
    color: #999999;
    margin: 0 0 40px 0;
}

.whitepaper-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.whitepaper-button-primary,
.whitepaper-button-secondary {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.whitepaper-button-primary {
    background: #D13736;
    color: #FFFFFF;
    border: none;
}

.whitepaper-button-primary:hover {
    background: #B82F2E;
}

.whitepaper-button-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whitepaper-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.whitepaper-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1A1A1A;
    padding: 48px;
    min-height: 400px;
}

.whitepaper-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.03) 49%, rgba(255,255,255,0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.03) 49%, rgba(255,255,255,0.03) 51%, transparent 52%);
    background-size: 30px 30px;
}

.whitepaper-book {
    position: relative;
    z-index: 10;
    width: 384px;
    height: 512px;
    background: #D13736;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: rotate(3deg);
    transition: transform 0.5s ease;
    flex-shrink: 0;
}

.whitepaper-book:hover {
    transform: rotate(0deg);
}

.whitepaper-book-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 32px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    color: #FFFFFF;
}

.whitepaper-book-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.whitepaper-book-bottom {
    display: flex;
    flex-direction: column;
}

.whitepaper-book-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.whitepaper-book-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: #FFFFFF;
    margin-top: 8px;
}

.whitepaper-book-edition {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ===================================
   CHINA READY PROGRAM SECTION
   =================================== */

.china-ready-section {
    background: #fff;
    padding: 96px 0;
}

.china-ready-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

.china-ready-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.china-ready-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    overflow: hidden;
}

.china-ready-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.china-ready-stat-badge {
    position: absolute;
    bottom: 32px;
    left: 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.china-ready-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #D13736;
    line-height: 1;
    margin-bottom: 8px;
}

.china-ready-stat-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.4;
}

.china-ready-text-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.china-ready-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
}

.china-ready-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #1A1A1A;
    margin: 0;
}

.china-ready-highlight {
    color: #D13736;
}

.china-ready-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 16px;
}

.china-ready-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.china-ready-step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #F8F8F8;
    border: 2px solid #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #D13736;
}

.china-ready-step-content {
    flex: 1;
    padding-top: 4px;
}

.china-ready-step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px 0;
}

.china-ready-step-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #737373;
    margin: 0;
}

.china-ready-button {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 32px;
    background: #D13736;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-top: 16px;
    align-self: flex-start;
}

.china-ready-button:hover {
    background: #A82C2B;
}

/* ===================================
   PREMIUM ACCESS SECTION
   =================================== */

.premium-access-section {
    background: #1A1A1A;
    padding: 96px 0;
    color: #FFFFFF;
}

.premium-access-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

.premium-access-header {
    text-align: center;
    margin-bottom: 64px;
}

.premium-access-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D13736;
    margin-bottom: 16px;
    display: block;
}

.premium-access-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -1px;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.premium-access-divider {
    width: 96px;
    height: 4px;
    background: #D13736;
    margin: 0 auto;
}

.premium-access-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.premium-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.premium-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.premium-card-icon {
    display: none;
}

.premium-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 24px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.premium-card:hover .premium-card-title {
    color: #D13736;
}

.premium-card-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #A3A3A3;
    margin: 0 0 40px 0;
}

.premium-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.premium-feature {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    color: #E5E5E5;
    padding-left: 24px;
    position: relative;
}

.premium-feature::before {
    content: '�?;
    position: absolute;
    left: 8px;
    color: #D13736;
    font-weight: 700;
}

.premium-card-button {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 16px 32px;
    background: #D13736;
    color: #FFFFFF;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-start;
    box-shadow: 0 4px 16px rgba(209, 55, 54, 0.2);
}

.premium-card-button:hover {
    background: #B82E2D;
    box-shadow: 0 6px 20px rgba(209, 55, 54, 0.3);
}

/* ===================================
   REPRESENTATION PAGE
   =================================== */

/* Services Section */
.rep-services {
    background: #FFFFFF;
    padding: 96px 0;
}

.rep-services-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

.rep-services-header {
    margin-bottom: 80px;
}

.rep-services-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: -1px;
    margin: 0 0 16px 0;
}

.rep-title-bar {
    width: 96px;
    height: 4px;
    background: #D13736;
}

/* Service Block - Alternating Layout */
.rep-service-block {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    align-items: center;
    margin-bottom: 160px;
}

.rep-service-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    height: 500px;
}

.rep-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.rep-service-image-wrapper:hover .rep-service-image {
    transform: scale(1.1);
}

/* Service 01 - Image Left, Content Right (with absolute positioning) */
.rep-service-left .rep-service-image-wrapper {
    grid-column: 1 / 9;
}

.rep-service-left .rep-service-content-right {
    grid-column: 5 / 13;
    position: absolute;
    right: 0;
    z-index: 20;
    max-width: 512px;
}

/* Service 02 - Content Left, Image Right (stacked rows, image offset right) */
.rep-service-right .rep-service-content-left {
    grid-column: span 6;
    order: 1;
    position: relative;
    z-index: 20;
    max-width: 640px;
}

.rep-service-right .rep-service-image-wrapper {
    grid-column: 5 / span 8;
    order: 2;
}

.rep-service-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 36px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.rep-service-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    font-style: italic;
    color: #D13736;
    opacity: 0.2;
    display: block;
    margin-bottom: 8px;
}

.rep-service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 16px 0;
}

.rep-service-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #737373;
    margin: 0 0 24px 0;
}

.rep-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.rep-feature-item {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(26, 26, 26, 0.7);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rep-feature-icon {
    color: #D13736;
    font-size: 18px;
}

.rep-service-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.rep-stat-box {
    background: #F8F8F8;
    padding: 24px;
    border-radius: 8px;
}

.rep-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.rep-stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #A3A3A3;
}

.rep-service-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #D13736;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.rep-service-link:hover {
    gap: 12px;
}

/* Service 03 - Cards Layout */
.rep-service-03 {
    padding-top: 80px;
}

.rep-service-03-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.rep-service-03-header .rep-service-number {
    margin: 0 auto 16px;
}

.rep-service-03-header .rep-service-title {
    font-size: 40px;
    margin-bottom: 16px;
}

.rep-service-03-header .rep-service-description {
    font-size: 18px;
}

.rep-service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.rep-service-card {
    background: #FFFFFF;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E5E5;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.rep-service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(209, 55, 54, 0.2);
}

.rep-card-icon {
    color: #D13736;
    margin-bottom: 24px;
    line-height: 1;
}

.rep-card-icon svg {
    width: 32px;
    height: 32px;
}

.rep-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1A1A1A;
    margin: 0 0 16px 0;
}

.rep-card-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #737373;
    margin: 0;
}

.rep-service-03-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 48px;
}

.rep-service-03-button-wrapper {
    text-align: center;
}

.rep-service-03-button {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px 40px;
    background: #D13736;
    color: #FFFFFF;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(209, 55, 54, 0.3);
}

.rep-service-03-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(209, 55, 54, 0.4);
}

/* Case Studies Section */
.rep-case-studies {
    background: #F8F6F6;
    padding: 96px 0;
}

.rep-case-studies-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

.rep-case-studies-header {
    margin-bottom: 80px;
}

.rep-case-tag-line {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.rep-case-tag-bar {
    width: 48px;
    height: 2px;
    background: #D13736;
}

.rep-case-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #D13736;
}

.rep-case-studies-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: -1px;
    margin: 0;
}

/* Case Study Layout */
.rep-case-study {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    margin-bottom: 128px;
    align-items: start;
}

.rep-case-main {
}

.rep-case-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    height: 450px;
    margin-bottom: 32px;
}

.rep-case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rep-case-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 24px 0;
}

.rep-case-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #737373;
    margin: 0 0 40px 0;
}

.rep-case-activities {
    margin-bottom: 40px;
}

.rep-activities-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #A3A3A3;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 16px;
}

.rep-activities-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rep-activity-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #737373;
    transition: all 0.2s ease;
}

.rep-activity-tag:hover {
    border-color: rgba(209, 55, 54, 0.3);
}

.rep-case-quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    color: #737373;
    margin: 0;
    padding-left: 24px;
    border-left: 4px solid #D13736;
}

.rep-case-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.rep-case-stat {
    background: #1A1A1A;
    padding: 24px;
    border-radius: 8px;
    color: #FFFFFF;
}

.rep-case-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.rep-case-stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #A3A3A3;
}

/* Case Study Sidebar */
.rep-case-sidebar {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #D13736;
    position: sticky;
    top: 120px;
}

.rep-sidebar-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #A3A3A3;
    margin: 0 0 32px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E5E5;
}

.rep-sidebar-item {
    margin-bottom: 32px;
}

.rep-sidebar-item:last-child {
    margin-bottom: 0;
}

.rep-sidebar-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #D13736;
    margin-bottom: 8px;
}

.rep-sidebar-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
}

/* CTA Section */
.rep-cta {
    background: #D13736;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.rep-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-color: #1A1A1A;
    background-image: radial-gradient(#FFFFFF 0.5px, transparent 0.5px), radial-gradient(#FFFFFF 0.5px, #1A1A1A 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

.rep-cta-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.rep-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -1px;
    margin: 0 0 32px 0;
}

.rep-cta-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 48px 0;
}

.rep-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.rep-cta-button-primary {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 20px 40px;
    background: #1A1A1A;
    color: #FFFFFF;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.rep-cta-button-primary:hover {
    transform: scale(1.05);
}

.rep-cta-button-secondary {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.rep-cta-button-secondary:hover {
    border-bottom-color: #FFFFFF;
}

/* ===================================
   WHITEPAPER, CHINA READY & PREMIUM ACCESS RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
    .whitepaper-card,
    .china-ready-content {
        grid-template-columns: 1fr;
    }

    .whitepaper-content {
        padding: 48px;
    }

    .whitepaper-visual {
        padding: 48px;
        min-height: 400px;
    }

    .china-ready-inner {
        padding: 0 40px;
    }

    .premium-access-inner {
        padding: 0 40px;
    }

    .premium-access-cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .whitepaper-section {
        padding: 64px 0;
    }

    .whitepaper-card {
        border-radius: 16px;
    }

    .whitepaper-content {
        padding: 32px 24px;
    }

    .whitepaper-title {
        font-size: 32px;
    }

    .whitepaper-description {
        font-size: 16px;
    }

    .whitepaper-buttons {
        flex-direction: column;
    }

    .whitepaper-button-primary,
    .whitepaper-button-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .whitepaper-visual {
        padding: 32px 24px;
        min-height: auto;
    }

    .whitepaper-book {
        width: 220px;
        height: 293px;
        flex-shrink: 0;
    }

    .whitepaper-book-content {
        margin: 20px;
        padding: 16px;
    }

    .whitepaper-book-title {
        font-size: 20px;
    }

    .china-ready-section {
        padding: 64px 0;
    }

    .china-ready-inner {
        padding: 0 24px;
    }

    .china-ready-title {
        font-size: 32px;
    }

    .china-ready-stat-badge {
        bottom: 24px;
        left: 24px;
        padding: 20px 24px;
    }

    .china-ready-stat-number {
        font-size: 40px;
    }

    .china-ready-stat-text {
        font-size: 12px;
    }

    .china-ready-step-number {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .china-ready-step-title {
        font-size: 18px;
    }

    .china-ready-button {
        width: 100%;
        text-align: center;
    }

    .premium-access-section {
        padding: 64px 0;
    }

    .premium-access-inner {
        padding: 0 24px;
    }

    .premium-access-header {
        margin-bottom: 48px;
    }

    .premium-access-title {
        font-size: 36px;
    }

    .premium-card {
        padding: 32px 24px;
    }

    .premium-card-title {
        font-size: 24px;
    }

    .premium-card-description {
        font-size: 16px;
    }

    .premium-card-button {
        width: 100%;
    }

    /* REPRESENTATION PAGE RESPONSIVE */
    .rep-services {
        padding: 64px 0;
    }

    .rep-services-title {
        font-size: 32px;
    }

    .rep-service-block {
        grid-template-columns: 1fr;
        margin-bottom: 80px;
    }

    .rep-service-left .rep-service-image-wrapper,
    .rep-service-left .rep-service-content-right {
        grid-column: 1 / -1;
        position: relative;
        right: auto;
        max-width: 100%;
    }

    .rep-service-right .rep-service-content-left,
    .rep-service-right .rep-service-image-wrapper {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .rep-service-right .rep-service-content-left {
        order: 2;
    }

    .rep-service-right .rep-service-image-wrapper {
        order: 1;
    }

    .rep-service-image-wrapper {
        height: 300px;
    }

    .rep-service-content {
        padding: 32px 24px;
    }

    .rep-service-title {
        font-size: 24px;
    }

    .rep-service-cards {
        grid-template-columns: 1fr;
    }

    .rep-service-03-header .rep-service-title {
        font-size: 28px;
    }

    .rep-case-studies {
        padding: 64px 0;
    }

    .rep-case-studies-title {
        font-size: 32px;
    }

    .rep-case-study {
        grid-template-columns: 1fr;
        margin-bottom: 64px;
    }

    .rep-case-image-wrapper {
        height: 300px;
    }

    .rep-case-title {
        font-size: 24px;
    }

    .rep-case-description {
        font-size: 16px;
    }

    .rep-case-sidebar {
        position: relative;
        top: 0;
    }

    .rep-cta {
        padding: 64px 0;
    }

    .rep-cta-title {
        font-size: 36px;
    }

    .rep-cta-description {
        font-size: 16px;
    }

    .rep-cta-buttons {
        flex-direction: column;
    }

    .rep-cta-button-primary {
        width: 100%;
    }
}

/* =============================================
   TRAVEL TRADE SERVICES PAGE
   ============================================= */

/* Shared Layout */
.tts-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

.tts-section {
    padding: 96px 0;
}

.tts-section-white { background: #FFFFFF; }
.tts-section-light { background: #F8F6F6; }
.tts-section-dark { background: #1b0e0e; color: #FFFFFF; }

.tts-border-top { border-top: 1px solid #f0f0f0; }
.tts-border-bottom { border-bottom: 1px solid #f0f0f0; }

.tts-mt-64 { margin-top: 64px; }
.tts-pb-48 { padding-bottom: 48px; }
.tts-pb-96 { padding-bottom: 96px; }

/* Two Column Layout */
.tts-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.tts-two-col.tts-reverse .tts-col-text { order: 1; }
.tts-two-col.tts-reverse .tts-col-media { order: 2; }

/* Service Tag */
.tts-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D13736;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.tts-service-tag svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Service Title */
.tts-service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #1b0e0e;
    line-height: 1.15;
    margin: 0 0 24px 0;
    letter-spacing: -0.5px;
}

.tts-service-title.tts-title-lg {
    font-size: 48px;
}

.tts-service-title.tts-title-white {
    color: #FFFFFF;
}

/* Service Description */
.tts-service-desc {
    color: #666666;
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.tts-service-desc.tts-desc-muted {
    color: rgba(255, 255, 255, 0.7);
}

/* Title Bar */
.tts-title-bar {
    width: 80px;
    height: 4px;
    background: #D13736;
    margin: 24px auto 0;
}

/* Center Header */
.tts-center-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.tts-center-header .tts-service-tag {
    justify-content: center;
}

/* Media Styles */
.tts-col-media {
    position: relative;
}

.tts-media-frame {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(27, 14, 14, 0.05);
}

.tts-shadow-xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.tts-media-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.tts-aspect-video { aspect-ratio: 16 / 9; }
.tts-aspect-portrait { aspect-ratio: 4 / 5; }
.tts-aspect-4-3 { aspect-ratio: 4 / 3; }

/* Glow Effects */
.tts-media-glow {
    position: absolute;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    filter: blur(48px);
    z-index: 0;
}

.tts-glow-tl { top: -24px; left: -24px; background: rgba(209, 55, 54, 0.1); }
.tts-glow-br { bottom: -32px; right: -32px; background: rgba(209, 55, 54, 0.05); width: 256px; height: 256px; }
.tts-glow-tr { top: -40px; right: -40px; background: rgba(209, 55, 54, 0.1); width: 160px; height: 160px; }
.tts-glow-bl { bottom: -40px; left: -40px; background: rgba(209, 55, 54, 0.1); width: 160px; height: 160px; }

/* Tilted Image (Service 02) */
.tts-media-tilted {
    position: relative;
    z-index: 10;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
}

.tts-tilt-bg {
    position: absolute;
    z-index: 0;
    top: 40px;
    right: -40px;
    width: 100%;
    height: 100%;
    background: rgba(209, 55, 54, 0.1);
    border-radius: 12px;
    transform: rotate(-3deg);
}

/* Check List */
.tts-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tts-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #444;
}

.tts-check-item svg {
    flex-shrink: 0;
}

/* Buttons */
.tts-button-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1b0e0e;
    color: #FFFFFF;
    padding: 12px 32px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
}

.tts-button-dark:hover {
    background: #D13736;
}

.tts-button-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    color: #D13736;
    border: 1px solid rgba(209, 55, 54, 0.2);
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    flex-shrink: 0;
}

.tts-button-outline:hover {
    background: #D13736;
    color: #FFFFFF;
}

/* Links */
.tts-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #D13736;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s;
}

.tts-link:hover {
    gap: 16px;
}

.tts-arrow {
    font-size: 20px;
    transition: transform 0.3s;
}

.tts-link:hover .tts-arrow {
    transform: translateX(4px);
}

/* Case Study Cards */
.tts-story-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1b0e0e;
    margin: 0 0 32px 0;
}

.tts-story-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.tts-case-card-wide {
    background: #F8F6F6;
    padding: 40px 48px;
    border-radius: 12px;
    border: 1px solid rgba(209, 55, 54, 0.05);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.tts-case-card-content {
    max-width: 640px;
}

.tts-case-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #D13736;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 12px 0;
}

.tts-case-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #1b0e0e;
    margin: 0 0 24px 0;
}

.tts-case-title-sm {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1b0e0e;
    margin: 0 0 16px 0;
}

.tts-case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.tts-case-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 4px 0;
}

.tts-case-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Case Spotlight (Single case study - centered design) */
.tts-case-spotlight {
    background: #F8F6F6;
    padding: 64px 0;
    border-top: 1px solid #E0E0E0;
    margin-top: 64px;
}

.tts-case-spotlight-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
    text-align: center;
}

.tts-case-spotlight-tag {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #D13736;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

.tts-case-spotlight-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1b0e0e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.tts-case-spotlight-quote {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 32px;
}

.tts-case-spotlight-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 32px;
    text-align: left;
}

.tts-case-spotlight-details > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tts-case-spotlight-details .tts-case-label {
    font-family: 'Space Grotesk', sans-serif;
    color: #aaa;
    font-weight: 600;
    margin: 0;
}

.tts-case-spotlight-details .tts-case-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.tts-case-spotlight-button {
    display: inline-block;
    background: #D13736;
    color: #FFF;
    padding: 14px 40px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 16px rgba(209, 55, 54, 0.2);
}

.tts-case-spotlight-button:hover {
    background: #B82F2F;
    box-shadow: 0 12px 24px rgba(209, 55, 54, 0.3);
}

.tts-case-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.tts-case-card {
    background: #F8F6F6;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(209, 55, 54, 0.05);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s;
}

.tts-case-card:hover {
    border-color: rgba(209, 55, 54, 0.2);
}

.tts-case-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 32px;
    flex-grow: 1;
}

.tts-case-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #D13736;
    text-decoration: none;
}

.tts-case-link:hover {
    text-decoration: underline;
}

/* Banner */
.tts-banner {
    display: flex;
    align-items: center;
    background: rgba(209, 55, 54, 0.1);
    border: 1px solid rgba(209, 55, 54, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.tts-banner-icon {
    background: rgba(209, 55, 54, 0.1);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(209, 55, 54, 0.1);
    color: #D13736;
}

.tts-banner-text {
    flex-grow: 1;
    padding: 16px 32px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1b0e0e;
    margin: 0;
    text-align: center;
}

.tts-banner-highlight {
    color: #D13736;
}

/* Mini Cards (Service 02) */
.tts-mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.tts-mini-card {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #D13736;
}

.tts-mini-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1b0e0e;
    margin: 0 0 8px 0;
}

.tts-mini-card-desc {
    font-size: 12px;
    color: #999;
    margin: 0;
    line-height: 1.5;
}

/* Image Duo (Service 03) */
.tts-image-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1080px;
    margin: 0 auto;
}

.tts-image-overlay-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.tts-overlay-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.tts-image-overlay-card:hover .tts-overlay-img {
    transform: scale(1.1);
}

.tts-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #1b0e0e, transparent, transparent);
}

.tts-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 32px;
}

.tts-overlay-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 8px 0;
}

.tts-overlay-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Feature Rows (Service 04) */
.tts-feature-rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.tts-feature-row {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.tts-feature-icon {
    color: #D13736;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 2px;
}

.tts-feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #1b0e0e;
    margin: 0 0 4px 0;
    font-size: 15px;
}

.tts-feature-desc {
    font-size: 13px;
    color: #999;
    margin: 0;
    line-height: 1.5;
}

/* FAM Image (Service 05) */
.tts-fam-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    filter: grayscale(100%);
    transition: filter 0.5s;
}

.tts-fam-img:hover {
    filter: grayscale(0%);
}

/* Highlight Grid (Service 05) */
.tts-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 16px;
}

.tts-highlight-item {
    display: flex;
    gap: 12px;
}

.tts-highlight-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.tts-highlight-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
    margin: 0 0 4px 0;
}

.tts-highlight-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Item List (Service 06) */
.tts-item-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.tts-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border: 1px solid rgba(209, 55, 54, 0.1);
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #1b0e0e;
    transition: border-color 0.3s;
}

.tts-item-row:hover {
    border-color: #D13736;
}

.tts-item-dot {
    width: 8px;
    height: 8px;
    background: #D13736;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Photo Grid (Service 06) */
.tts-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}

.tts-photo-grid-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.tts-photo-grid-img.tts-photo-offset {
    margin-top: 48px;
}

/* Story header for case studies */
.tts-story-header {
    margin-bottom: 32px;
}

/* Case Scroll (for scrolling case studies if needed) */
.tts-case-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
    margin: 0 -8px;
    padding: 0 8px 16px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tts-case-scroll::-webkit-scrollbar {
    display: none;
}

.tts-case-scroll .tts-case-card {
    min-width: 300px;
    flex-shrink: 0;
}

/* Three-column grid for 3 case studies (Service 06) */
.tts-case-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tts-case-trio .tts-case-card {
    background: #F8F6F6;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(209, 55, 54, 0.05);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.tts-case-trio .tts-case-card:hover {
    border-color: rgba(209, 55, 54, 0.2);
}

.tts-case-trio .tts-case-card .tts-case-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #D13736;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

.tts-case-trio .tts-case-card .tts-case-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #1B0E0E;
    margin-bottom: 16px;
    font-size: 24px;
}

.tts-case-trio .tts-case-card .tts-case-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
    flex-grow: 1;
}

.tts-case-trio .tts-case-card .tts-case-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #D13736;
    text-decoration: none;
}

.tts-case-trio .tts-case-card .tts-case-link:hover {
    text-decoration: underline;
}

/* Three Column Layout (Service 07) */
.tts-three-col-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 48px;
    align-items: center;
}

.tts-center-text {
    text-align: center;
    padding: 0 16px;
}

.tts-center-text .tts-service-tag {
    justify-content: center;
}

.tts-side-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tts-side-card {
    padding: 32px;
    background: #F8F6F6;
    border-radius: 12px;
    border-left: 4px solid #D13736;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s;
}

.tts-side-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.tts-side-card-icon {
    display: block;
    color: #D13736;
    margin-bottom: 16px;
}

.tts-side-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1b0e0e;
    margin: 0 0 8px 0;
}

.tts-side-card-desc {
    font-size: 13px;
    color: #999;
    margin: 0;
    line-height: 1.5;
}

/* CTA */
.tts-cta {
    background: #1b0e0e;
    padding: 96px 0;
    position: relative;
}

.tts-cta-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
    text-align: center;
}

.tts-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -1px;
    margin: 0 0 32px 0;
}

.tts-cta-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 48px;
}

.tts-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.tts-cta-btn-primary {
    display: inline-block;
    background: #D13736;
    color: #FFFFFF;
    padding: 16px 40px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    min-width: 200px;
    transition: background 0.3s;
}

.tts-cta-btn-primary:hover {
    background: rgba(209, 55, 54, 0.9);
}

.tts-cta-btn-secondary {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 16px 40px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    min-width: 200px;
    transition: background 0.3s;
}

.tts-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* =================================================================
   TRAVEL TRADE SOLUTIONS STYLES
   ================================================================= */

/* Section base styles */
.tts-sol-section {
    position: relative;
    overflow: hidden;
    padding: 128px 0;
}

.tts-sol-section-white {
    background: #FFFFFF;
}

.tts-sol-section-light {
    background: #F8F6F6;
}

/* Layout Type 1 & 5: Title block with image (left or right) */
.tts-sol-overlay-layout {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    margin-bottom: 96px;
}

.tts-sol-image-bg {
    position: absolute;
    top: 0;
    width: 65%;
    height: 100%;
    z-index: 0;
}

.tts-sol-image-bg.right {
    right: 0;
}

.tts-sol-image-bg.left {
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.tts-sol-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.tts-sol-image-organic {
    position: relative;
    width: 100%;
    max-width: 600px;
    transform: rotate(-2deg);
    transition: transform 0.7s;
}

.tts-sol-image-organic:hover {
    transform: rotate(0deg);
}

.tts-sol-image-organic img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
}

.tts-sol-stat-badge {
    position: absolute;
    top: -40px;
    right: -40px;
    background: #D13736;
    color: #FFFFFF;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(209, 55, 54, 0.3);
    z-index: 20;
    transform: rotate(12deg);
}

.tts-sol-stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.tts-sol-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
}

.tts-sol-content-card {
    max-width: 600px;
    background: #FFFFFF;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(27, 14, 14, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.tts-sol-content-card.align-right {
   margin-left: auto;
}

.tts-sol-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D13736;
    margin-bottom: 24px;
}

.tts-sol-tag svg {
    width: 20px;
    height: 20px;
}

.tts-sol-tag-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tts-sol-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #1B0E0E;
    margin-bottom: 20px;
}

.tts-sol-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 32px;
}

.tts-sol-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #D13736;
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(209, 55, 54, 0.2);
    transition: all 0.3s;
}

.tts-sol-cta:hover {
    background: rgba(209, 55, 54, 0.9);
    box-shadow: 0 12px 24px rgba(209, 55, 54, 0.3);
}

.tts-sol-cta svg {
    width: 16px;
    height: 16px;
}

/* Feature cards (three at bottom of sections) */
.tts-sol-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 64px;
}

.tts-sol-feature-card {
    position: relative;
    background: #FFFFFF;
    padding: 64px 32px 32px;
    border-radius: 16px;
    border: 1px solid rgba(27, 14, 14, 0.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
}

.tts-sol-feature-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(209, 55, 54, 0.2);
}

.tts-sol-feature-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: #D13736;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(209, 55, 54, 0.3);
}

.tts-sol-feature-icon svg {
    width: 28px;
    height: 28px;
}

.tts-sol-feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 12px;
    margin-top: 8px;
}

.tts-sol-feature-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

/* Layout Type 3: Horizontal image with content below */
.tts-sol-center-layout {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 64px;
}

.tts-sol-image-wrapper {
    width: 100%;
    margin-bottom: 96px;
    position: relative;
}

.tts-sol-image-frame {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(27, 14, 14, 0.1);
    background: #FFFFFF;
    padding: 24px;
    position: relative;
    z-index: 10;
}

.tts-sol-image-frame img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
}

.tts-sol-glow-bottom {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 480px;
    height: 480px;
    background: rgba(209, 55, 54, 0.1);
    border-radius: 50%;
    filter: blur(140px);
    z-index: -10;
}

.tts-sol-glow-top {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 480px;
    height: 480px;
    background: rgba(209, 55, 54, 0.05);
    border-radius: 50%;
    filter: blur(140px);
    z-index: -10;
}

/* Layout Type 4: Three vertical images in row */
.tts-sol-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.tts-sol-image-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(27, 14, 14, 0.05);
    transition: transform 0.5s;
}

.tts-sol-image-card:hover {
    transform: scale(1.02);
}

.tts-sol-image-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .tts-sol-overlay-layout {
        min-height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    
    .tts-sol-image-bg {
        position: relative;
        width: 100%;
        height: 400px;
        top: auto;
        left: auto;
        right: auto;
        order: -1;
    }
    
    .tts-sol-image-bg.left {
        padding: 0;
    }
    
    .tts-sol-content-card {
        max-width: 100%;
        padding: 48px;
        position: relative;
    }
    
    .tts-sol-title {
        font-size: 42px;
    }
    
    .tts-sol-features {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tts-sol-image-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .tts-sol-image-wrapper {
        margin-bottom: 64px;
    }
}

@media (max-width: 768px) {
    .tts-sol-section {
        padding: 80px 0;
    }
    
    .tts-sol-image-bg {
        height: 300px;
    }
    
    .tts-sol-content-card {
        padding: 32px;
    }
    
    .tts-sol-title {
        font-size: 32px;
    }
    
    .tts-sol-description {
        font-size: 16px;
    }
    
    .tts-sol-overlay-layout {
        margin-bottom: 48px;
    }
    
    .tts-sol-image-wrapper {
        margin-bottom: 48px;
    }
    
    .tts-sol-image-frame {
        border-radius: 24px;
        padding: 16px;
    }
    
    .tts-sol-image-frame img {
        border-radius: 16px;
    }
    
    .tts-sol-center-layout {
        margin-bottom: 48px;
    }
    
    .tts-sol-cta {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* ============================================
   PR & MARKETING PAGE STYLES
   ============================================ */

/* Hero Section */
.prm-hero {
    background: #1A1A1A;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 100px;
    position: relative;
    overflow: hidden;
}

.prm-hero-accent-bar {
    position: absolute;
    left: 100px;
    top: 0;
    width: 8px;
    height: 80px;
    background: #D13736;
}

.prm-hero-inner {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding-top: 48px;
}

.prm-hero-title {
    font-size: 144px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.prm-hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    max-width: 800px;
    margin-bottom: 48px;
    line-height: 1.6;
}

.prm-hero-button {
    background: #D13736;
    color: #FFFFFF;
    padding: 16px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.prm-hero-button:hover {
    background: #B82D2C;
}

/* Main Container */
.prm-main {
    display: flex;
    flex-direction: column;
}

/* Section Styles */
.prm-section {
    padding: 120px 0;
}

.prm-section-white {
    background: #FFFFFF;
}

.prm-section-gray {
    background: #F8F8F8;
}

.prm-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

/* Accent Bars */
.prm-accent-bar-horizontal {
    width: 80px;
    height: 8px;
    background: #D13736;
    margin-bottom: 32px;
}

.prm-accent-bar-vertical {
    width: 4px;
    height: 80px;
    background: #D13736;
    margin: 0 auto 32px;
}

/* Typography */
.prm-section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.prm-section-description {
    font-size: 18px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
}

.prm-section-description-large {
    font-size: 18px;
    color: #666666;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 80px;
    text-align: center;
}

/* Links */
.prm-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #D13736;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s;
}

.prm-link:hover {
    gap: 16px;
}

.prm-arrow {
    font-size: 20px;
    transition: transform 0.3s;
}

.prm-link:hover .prm-arrow {
    transform: translateX(4px);
}

/* Grid Layouts */
.prm-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.prm-content {
    order: 1;
}

.prm-content-narrow {
    max-width: 600px;
    margin-bottom: 80px;
}

.prm-content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.prm-content-center .prm-section-description {
    margin-left: auto;
    margin-right: auto;
}

/* Phone Mockup */
.prm-phone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    background: #111;
    border-radius: 40px;
    border: 8px solid #222;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    overflow: hidden;
    order: 2;
}

/* ==========================================
   Social Media & Influencer Page
   ========================================== */

.smc-hero {
    padding: 100px 0 120px;
    background: #FFFFFF;
}

.smc-hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.smc-hero-content {
    order: 1;
}

.smc-hero-breadcrumb {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #D13736;
    margin-bottom: 20px;
}

.smc-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.smc-hero-description {
    font-size: 18px;
    color: #666666;
    line-height: 1.7;
    max-width: 540px;
}

.smc-hero-image {
    order: 2;
    display: flex;
    justify-content: center;
}

.smc-hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #F0F0F0;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
}

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

    .smc-hero-container {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 48px;
    }

    .smc-hero-title {
        font-size: 36px;
    }

    .smc-hero-image {
        order: -1;
    }

    .smc-hero-image-placeholder {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Services Offered */
.smc-services {
    padding: 100px 0;
    background: #F8F8F8;
}

.smc-services-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

.smc-services-title {
    font-size: 36px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.smc-services-list {
    border-top: 1px solid #E0E0E0;
}

.smc-service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 40px 0;
    border-bottom: 1px solid #E0E0E0;
    align-items: start;
}

.smc-service-left {
    display: flex;
    align-items: baseline;
    gap: 24px;
}

.smc-service-number {
    font-size: 14px;
    font-weight: 700;
    color: #D13736;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.smc-service-name {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.3;
}

.smc-service-right {
    display: flex;
    align-items: start;
}

.smc-service-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
}

/* Tips Callout */
.smc-tips {
    padding: 80px 0;
    background: #FFFFFF;
}

.smc-tips-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px 0 140px;
    position: relative;
}

.smc-tips-container::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #D13736;
}

.smc-tips-title {
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 32px;
}

.smc-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: tips-counter;
}

.smc-tips-item {
    counter-increment: tips-counter;
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
    padding: 12px 0;
    padding-left: 36px;
    position: relative;
}

.smc-tips-item::before {
    content: counter(tips-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #D13736;
    font-size: 15px;
}

/* Case Studies */
.smc-case-studies {
    padding: 100px 0;
    background: #F8F8F8;
}

.smc-case-studies-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

.smc-case-studies-heading {
    font-size: 36px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.smc-case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.smc-case-study:last-child {
    margin-bottom: 0;
}

.smc-case-study:nth-child(even) .smc-case-study-image {
    order: 2;
}

.smc-case-study:nth-child(even) .smc-case-study-content {
    order: 1;
}

.smc-case-study-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #E8E8E8;
    border-radius: 8px;
}

.smc-case-study-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D13736;
    margin-bottom: 12px;
}

.smc-case-study-client {
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
    line-height: 1.3;
}

.smc-case-study-project {
    font-size: 16px;
    color: #888888;
    margin-bottom: 24px;
    font-style: italic;
}

.smc-case-study-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.smc-case-study-highlights li {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid #F0F0F0;
}

.smc-case-study-highlights li:last-child {
    border-bottom: none;
}

.smc-case-study-highlights li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #D13736;
    font-weight: 700;
}

/* Brands Grid */
.smc-brands {
    padding: 100px 0;
    background: #FFFFFF;
}

.smc-brands-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
    text-align: center;
}

.smc-brands-title {
    font-size: 36px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.smc-brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border: 1px solid #E8E8E8;
}

.smc-brand-item {
    padding: 40px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
}

.smc-brand-item:nth-child(6n) {
    border-right: none;
}

.smc-brand-item:nth-last-child(-n+6) {
    border-bottom: none;
}

.smc-brand-name {
    font-size: 14px;
    font-weight: 700;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Social Media Page Tablet */
@media (max-width: 1024px) {
    .smc-brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .smc-brand-item:nth-child(6n) {
        border-right: 1px solid #E8E8E8;
    }

    .smc-brand-item:nth-last-child(-n+6) {
        border-bottom: 1px solid #E8E8E8;
    }

    .smc-brand-item:nth-child(4n) {
        border-right: none;
    }

    .smc-brand-item:nth-last-child(-n+4) {
        border-bottom: none;
    }
}

/* Social Media Page Mobile */
@media (max-width: 768px) {
    .smc-services {
        padding: 60px 0;
    }

    .smc-services-container {
        padding: 0 24px;
    }

    .smc-services-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .smc-service-item {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 28px 0;
    }

    .smc-tips {
        padding: 60px 0;
    }

    .smc-tips-container {
        padding: 0 24px 0 44px;
    }

    .smc-tips-container::before {
        left: 24px;
    }

    .smc-tips-title {
        font-size: 24px;
    }

    .smc-case-studies {
        padding: 60px 0;
    }

    .smc-case-studies-container {
        padding: 0 24px;
    }

    .smc-case-studies-heading {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .smc-case-study {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 60px;
    }

    .smc-case-study:nth-child(even) .smc-case-study-image {
        order: 0;
    }

    .smc-case-study:nth-child(even) .smc-case-study-content {
        order: 0;
    }

    .smc-brands {
        padding: 60px 0;
    }

    .smc-brands-container {
        padding: 0 24px;
    }

    .smc-brands-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .smc-brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .smc-brand-item:nth-child(6n) {
        border-right: 1px solid #E8E8E8;
    }

    .smc-brand-item:nth-child(3n) {
        border-right: none;
    }

    .smc-brand-item:nth-last-child(-n+6) {
        border-bottom: 1px solid #E8E8E8;
    }

    .smc-brand-item:nth-last-child(-n+3) {
        border-bottom: none;
    }
}

/* Social Media Page Small Mobile */
@media (max-width: 480px) {
    .smc-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .smc-brand-item:nth-child(3n) {
        border-right: 1px solid #E8E8E8;
    }

    .smc-brand-item:nth-last-child(-n+3) {
        border-bottom: 1px solid #E8E8E8;
    }

    .smc-brand-item:nth-child(2n) {
        border-right: none;
    }

    .smc-brand-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

.prm-phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    overflow: hidden;
}

.prm-phone-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Device Mockup */
.prm-device-mockup {
    position: relative;
    margin: 0 auto;
}

.prm-desktop-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background: transparent;
}

/* Quote */
.prm-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 32px;
    color: rgba(26, 26, 26, 0.8);
    line-height: 1.7;
    margin-bottom: 48px;
}

/* Feature Grid */
.prm-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid #E5E5E5;
}

.prm-feature-card {
    padding: 48px;
    border-right: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    transition: background 0.3s;
}

.prm-feature-card:nth-child(3n) {
    border-right: none;
}

.prm-feature-card:hover {
    background: #F8F8F8;
}

.prm-feature-icon {
    color: #D13736;
    margin-bottom: 24px;
}

.prm-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.prm-feature-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

/* Section Header */
.prm-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    gap: 32px;
}

.prm-header-content {
    flex: 1;
}

.prm-button-secondary {
    padding: 16px 32px;
    border: 2px solid #D13736;
    color: #D13736;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    white-space: nowrap;
}

.prm-button-secondary:hover {
    background: #D13736;
    color: #FFFFFF;
}

/* Campaigns Grid */
.prm-campaigns-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
}

.prm-campaigns-large {
    grid-column: span 8;
    aspect-ratio: 16/9;
    background: #FFFFFF;
    overflow: hidden;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.25);
}

.prm-campaigns-callout {
    grid-column: span 4;
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.prm-callout-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 28px;
    margin-bottom: 24px;
}

.prm-callout-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.prm-campaigns-callout .prm-link {
    margin-top: 32px;
}

.prm-campaigns-square {
    grid-column: span 4;
    aspect-ratio: 1;
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.prm-campaigns-wide {
    grid-column: span 8;
    aspect-ratio: 21/9;
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.prm-campaigns-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Player */
/* Video and Gallery Grid */
.prm-video-gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: center;
}

.prm-video-player {
    position: relative;
    aspect-ratio: 16/9;
    background: #1A1A1A;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 40px 100px -15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    group: hover;
}

.prm-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 1s;
}

.prm-video-player:hover .prm-video-thumbnail {
    transform: scale(1.05);
}

.prm-video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 112px;
    height: 112px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}

.prm-video-player:hover .prm-video-play-button {
    background: #D13736;
    border-color: #D13736;
}

.prm-play-icon {
    width: 48px;
    height: 48px;
    fill: #FFFFFF;
}

/* Gallery */
.prm-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.prm-gallery-item {
    aspect-ratio: 4/3;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.5s;
    overflow: hidden;
}

.prm-gallery-item:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.prm-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.7s;
}

.prm-gallery-item:hover .prm-gallery-image {
    filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 1024px) {
    .prm-hero {
        padding: 0 60px;
    }
    
    .prm-hero-accent-bar {
        left: 60px;
    }
    
    .prm-hero-title {
        font-size: 96px;
    }
    
    .prm-container {
        padding: 0 60px;
    }
    
    .prm-section {
        padding: 80px 0;
    }
    
    .prm-section-title {
        font-size: 40px;
    }
    
    .prm-grid-2col {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .prm-phone-frame {
        margin: 0 auto;
    }
    
    .prm-feature-grid {
        grid-template-columns: 1fr;
    }
    
    .prm-feature-card {
        border-right: none;
    }
    
    .prm-campaigns-grid {
        grid-template-columns: 1fr;
    }
    
    .prm-campaigns-large,
    .prm-campaigns-callout,
    .prm-campaigns-square,
    .prm-campaigns-wide {
        grid-column: span 1;
    }
    
    .prm-gallery {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .prm-video-gallery-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .prm-hero {
        padding: 0 24px;
        min-height: 60vh;
    }
    
    .prm-hero-accent-bar {
        left: 24px;
    }
    
    .prm-hero-title {
        font-size: 56px;
    }
    
    .prm-hero-description {
        font-size: 16px;
    }
    
    .prm-container {
        padding: 0 24px;
    }
    
    .prm-section {
        padding: 60px 0;
    }
    
    .prm-section-title {
        font-size: 32px;
    }
    
    .prm-section-description {
        font-size: 16px;
    }
    
    .prm-quote {
        font-size: 24px;
    }
    
    .prm-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===================================
   SERVICES PAGE RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
    .tts-inner {
        padding: 0 40px;
    }
    
    .tts-two-col {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .tts-two-col.tts-reverse .tts-col-text { order: 0; }
    .tts-two-col.tts-reverse .tts-col-media { order: 1; }
    
    .tts-three-col-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tts-case-trio {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .tts-case-duo {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .tts-image-duo {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .tts-mini-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .tts-service-title {
        font-size: 36px;
    }
    
    .tts-service-title.tts-title-lg {
        font-size: 42px;
    }
    
    .tts-cta-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .tts-inner {
        padding: 0 24px;
    }
    
    .tts-section {
        padding: 64px 0;
    }
    
    .tts-service-title {
        font-size: 32px;
    }
    
    .tts-service-title.tts-title-lg {
        font-size: 36px;
    }
    
    .tts-service-desc {
        font-size: 16px;
    }
    
    .tts-case-duo {
        gap: 24px;
    }
    
    .tts-case-card {
        padding: 32px 24px;
    }
    
    .tts-case-spotlight-inner {
        padding: 40px 24px;
    }
    
    .tts-mini-cards {
        gap: 16px;
    }
    
    .tts-mini-card {
        padding: 20px;
    }
    
    .tts-image-duo {
        gap: 24px;
    }
    
    .tts-overlay-text {
        padding: 24px;
    }
    
    .tts-overlay-title {
        font-size: 20px;
    }
    
    .tts-cta {
        padding: 64px 0;
    }
    
    .tts-cta-inner {
        padding: 0 24px;
    }
    
    .tts-cta-title {
        font-size: 32px;
    }
    
    .tts-cta-desc {
        font-size: 16px;
    }
    
    .tts-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .tts-cta-btn-primary,
    .tts-cta-btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .tts-highlight-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===================================
   REPRESENTATION PAGE RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
    .rep-services-inner {
        padding: 0 40px;
    }
    
    .rep-service-block {
        grid-template-columns: 1fr;
        gap: 48px;
        margin-bottom: 80px;
    }
    
    .rep-service-left .rep-service-image-wrapper,
    .rep-service-right .rep-service-image-wrapper {
        grid-column: 1;
    }
    
    .rep-service-left .rep-service-content-right,
    .rep-service-right .rep-service-content-left {
        grid-column: 1;
        position: static;
        max-width: 100%;
    }
    
    .rep-service-image-wrapper {
        height: 400px;
    }
    
    .rep-service-content {
        padding: 32px 32px;
    }
    
    .rep-service-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .rep-service-card {
        padding: 32px 24px;
    }
    
    .rep-service-03-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .rep-case-studies-inner {
        padding: 0 40px;
    }
    
    .rep-case-study {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .rep-case-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    .rep-services {
        padding: 64px 0;
    }
    
    .rep-services-inner {
        padding: 0 24px;
    }
    
    .rep-services-title {
        font-size: 32px;
    }
    
    .rep-service-block {
        margin-bottom: 64px;
    }
    
    .rep-service-image-wrapper {
        height: 300px;
    }
    
    .rep-service-title {
        font-size: 28px;
    }
    
    .rep-service-description {
        font-size: 16px;
    }
    
    .rep-service-features {
        gap: 16px;
    }
    
    .rep-service-content {
        padding: 28px 24px;
    }
    
    .rep-service-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .rep-service-card {
        padding: 32px 24px;
    }
    
    .rep-service-03-links {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .rep-case-studies {
        padding: 64px 0;
    }
    
    .rep-case-studies-inner {
        padding: 0 24px;
    }
    
    .rep-case-studies-title {
        font-size: 32px;
    }
    
    .rep-case-title {
        font-size: 24px;
    }
    
    .rep-case-stats {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   AI PAGE
   ===================================================== */

/* Section 1: Two Things AI Needs */
.ai-needs {
    padding: 96px 24px;
    background: #F8F8F8;
}

.ai-needs-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.ai-needs-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.ai-needs-header {
    text-align: center;
    margin-bottom: 64px;
}

.ai-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #1A1A1A;
    max-width: 800px;
    margin: 0 auto;
}

.ai-needs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.ai-card-data {
    background: #FFFFFF;
    padding: 48px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: border-color 0.3s;
}

.ai-card-data:hover {
    border-color: rgba(209, 55, 54, 0.3);
}

.ai-card-expertise {
    background: #1A1A1A;
    padding: 48px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: border-color 0.3s;
}

.ai-card-expertise:hover {
    border-color: rgba(209, 55, 54, 0.3);
}

.ai-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(209, 55, 54, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: background 0.3s;
}

.ai-card-icon .material-symbols-outlined {
    font-size: 30px;
    color: #D13736;
}

.ai-card-data:hover .ai-card-icon {
    background: #D13736;
}

.ai-card-data:hover .ai-card-icon .material-symbols-outlined {
    color: #FFFFFF;
}

.ai-card-icon-dark {
    background: rgba(255,255,255,0.1);
}

.ai-card-icon-dark .material-symbols-outlined {
    color: #FFFFFF;
}

.ai-card-expertise:hover .ai-card-icon-dark {
    background: #D13736;
}

.ai-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.ai-card-title-light {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.ai-card-text {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

.ai-card-text-light {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}

.ai-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #888;
}

.ai-card-list-light {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-card-list-light li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
}

.ai-check {
    font-size: 18px;
    color: #D13736;
}

/* Section 2: Callout */
.ai-callout {
    padding: 64px 24px;
    background: rgba(209, 55, 54, 0.05);
}

.ai-callout-inner {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.ai-callout-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #D13736;
    font-style: italic;
}

.ai-callout-box {
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid #D13736;
    background: #FFFFFF;
    padding: 48px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    border-radius: 0 8px 8px 0;
}

.ai-callout-content {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.ai-callout-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(209, 55, 54, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-callout-icon .material-symbols-outlined {
    color: #D13736;
    font-size: 24px;
}

.ai-callout-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.ai-callout-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

/* Section 3: MCP */
.ai-mcp {
    padding: 96px 24px;
    background: #FFFFFF;
}

.ai-mcp-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.ai-mcp-header {
    text-align: center;
    margin-bottom: 80px;
}

.ai-section-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    color: #888;
    max-width: 600px;
    margin: 24px auto 0;
}

.ai-mcp-diagram {
    background: #1A1A1A;
    border-radius: 12px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 80px;
    border: 1px solid rgba(255,255,255,0.05);
}

.ai-mcp-node {
    text-align: center;
    flex: 1;
}

.ai-mcp-node-icon {
    width: 96px;
    height: 96px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.ai-mcp-node-icon .material-symbols-outlined {
    font-size: 48px;
    color: #FFFFFF;
}

.ai-mcp-node-icon-primary {
    background: rgba(209, 55, 54, 0.2);
    border-color: rgba(209, 55, 54, 0.3);
}

.ai-mcp-node-icon-primary .material-symbols-outlined {
    color: #D13736;
}

.ai-mcp-node-label {
    color: #FFFFFF;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.ai-mcp-bridge {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 0;
}

.ai-mcp-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D13736, transparent);
    position: relative;
}

.ai-mcp-line-glow {
    position: absolute;
    inset: 0;
    background: #D13736;
    filter: blur(8px);
}

.ai-mcp-line-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #D13736;
    color: #FFFFFF;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    white-space: nowrap;
    font-family: 'Space Grotesk', sans-serif;
}

.ai-practice-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: 40px;
}

.ai-practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.ai-practice-card {
    padding: 32px;
    border: 1px solid rgba(0,0,0,0.05);
    background: #FFFFFF;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

.ai-practice-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.ai-practice-icon {
    color: #D13736;
    font-size: 28px;
    margin-bottom: 16px;
}

.ai-practice-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.ai-practice-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Section 4: Skills */
.ai-skills {
    padding: 96px 24px;
    background: #1A1A1A;
    position: relative;
    overflow: hidden;
}

.ai-skills-skew {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    background: rgba(209, 55, 54, 0.05);
    transform: skewX(-12deg) translateX(80px);
}

.ai-skills-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ai-skills-header {
    margin-bottom: 64px;
}

.ai-section-title-light {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.ai-section-subtitle-light {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    color: rgba(255,255,255,0.6);
}

.ai-skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.ai-skills-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ai-skills-col-offset {
    margin-top: 64px;
}

.ai-skill-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 32px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: border-color 0.3s;
}

.ai-skill-card:hover {
    border-color: rgba(209, 55, 54, 0.5);
}

.ai-skill-card-offset {
    margin-left: 16px;
}

.ai-skill-icon {
    color: #D13736;
    font-size: 30px;
    flex-shrink: 0;
}

.ai-skill-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.ai-skill-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

/* Section 5: Why It Matters */
.ai-matters {
    padding: 96px 24px;
    background: #F0F0F0;
}

.ai-matters-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ai-matters-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ai-matters-bold {
    font-weight: 700;
    color: #1A1A1A;
}

/* Section 6: How We Can Help */
.ai-help {
    padding: 96px 24px;
    background: #FFFFFF;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.ai-help-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.ai-help-header {
    text-align: center;
    margin-bottom: 64px;
}

.ai-help-divider {
    width: 80px;
    height: 4px;
    background: #D13736;
    margin: 16px auto 0;
    border-radius: 2px;
}

.ai-help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 80px;
}

.ai-help-card {
    padding: 32px;
    background: #F8F8F8;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ai-help-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(209, 55, 54, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.ai-help-card-icon .material-symbols-outlined {
    font-size: 30px;
    color: #D13736;
}

.ai-help-card-text {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
}

.ai-help-card-text strong {
    color: #D13736;
    font-weight: 700;
}

.ai-help-cta {
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 64px;
}

.ai-help-cta-label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 32px;
}

.ai-help-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #D13736;
    color: #FFFFFF;
    padding: 20px 48px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.ai-help-cta-button:hover {
    box-shadow: 0 10px 30px rgba(209, 55, 54, 0.3);
    transform: translateY(-2px);
}

.ai-help-cta-button .material-symbols-outlined {
    transition: transform 0.3s;
}

.ai-help-cta-button:hover .material-symbols-outlined {
    transform: translateX(4px);
}

/* AI Page Responsive */
@media (max-width: 768px) {
    .ai-section-title {
        font-size: 32px;
    }

    .ai-needs {
        padding: 64px 24px;
    }

    .ai-needs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ai-card-data,
    .ai-card-expertise {
        padding: 32px;
    }

    .ai-card-title,
    .ai-card-title-light {
        font-size: 24px;
    }

    .ai-callout-heading {
        font-size: 28px;
    }

    .ai-callout-box {
        padding: 32px;
    }

    .ai-callout-content {
        flex-direction: column;
    }

    .ai-callout-icon {
        display: none;
    }

    .ai-mcp {
        padding: 64px 24px;
    }

    .ai-mcp-diagram {
        flex-direction: column;
        padding: 32px;
        gap: 24px;
    }

    .ai-mcp-bridge {
        transform: rotate(90deg);
        width: 120px;
    }

    .ai-practice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ai-skills {
        padding: 64px 24px;
    }

    .ai-skills-skew {
        display: none;
    }

    .ai-section-title-light {
        font-size: 32px;
    }

    .ai-skills-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ai-skills-col-offset {
        margin-top: 0;
    }

    .ai-skill-card-offset {
        margin-left: 0;
    }

    .ai-matters {
        padding: 64px 24px;
    }

    .ai-matters-text {
        text-align: left;
    }

    .ai-help {
        padding: 64px 24px;
    }

    .ai-help-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ai-help-card-text {
        font-size: 17px;
    }

    .ai-help-cta-button {
        font-size: 17px;
        padding: 16px 32px;
    }
}


/* ============================================================
   TEAM PAGE
   ============================================================ */

.team-main {
    background-color: #f8f6f6;
}

.team-members {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Individual member section --- */
.team-member {
    padding: 64px 0;
    border-bottom: 1px solid rgba(209, 55, 54, 0.1);
}

.team-member:last-child {
    border-bottom: none;
}

.team-member-inner {
    width: 100%;
}

/* --- Header: dept tag, name, title --- */
.team-member-header {
    width: 100%;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(209, 55, 54, 0.2);
}

.team-member-dept {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 9999px;
    background-color: rgba(209, 55, 54, 0.1);
    color: #D13736;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.team-member-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1;
    margin: 0 0 8px 0;
}

.team-member-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #D13736;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

/* --- Content grid: photo+meta | bio --- */
.team-member-grid {
    display: flex;
    flex-direction: row;
    gap: 64px;
}

/* Even members: reverse the grid (photo on right) */
.team-member:nth-child(even) .team-member-grid {
    flex-direction: row-reverse;
}

.team-member:nth-child(even) .team-member-meta {
    text-align: right;
    align-items: flex-end;
}

/* --- Meta column (photo + badges) --- */
.team-member-meta {
    width: 25%;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* --- Photo --- */
.team-member-photo {
    position: relative;
    margin-bottom: 24px;
}

.team-member-photo img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    border: 4px solid #fff;
}

/* --- Badges --- */
.team-member-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    background-color: #f1f5f9;
    padding: 6px 12px;
    border-radius: 12px;
    color: #1e293b;
    white-space: nowrap;
}

.team-badge .material-symbols-outlined {
    color: #D13736;
    font-size: 18px;
}

/* --- Bio column --- */
.team-member-bio {
    flex: 1;
}

.team-member-bio p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #475569;
    font-weight: 300;
    margin: 0;
}

.team-brand {
    font-weight: 600;
    color: #1e293b;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .team-member {
        padding: 40px 0;
    }

    .team-member-name {
        font-size: 2.25rem;
    }

    .team-member-title {
        font-size: 1rem;
    }

    .team-member-grid {
        flex-direction: column !important;
        gap: 32px;
    }

    .team-member-meta {
        width: 100%;
        align-items: center !important;
        text-align: center !important;
    }

    .team-member-bio p {
        font-size: 1rem;
    }
}

/* ============================================
   TEAM SPEAKERS SECTION
   ============================================ */

.team-speakers {
    background: #FFFFFF;
    padding: 96px 0;
}

.team-speakers-inner {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 24px;
}

.team-speakers-header {
    margin-bottom: 56px;
    text-align: center;
}

.team-speakers-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin: 0 0 32px 0;
    text-transform: uppercase;
    text-align: center;
}

.team-speakers-guidelines {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    text-align: left;
}

.team-speakers-guidelines li {
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
}

.team-speakers-guidelines li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #D13736;
    font-weight: 700;
    font-size: 16px;
}

/* Three-column masonry-style grid with variable height cards */
.team-speakers-grid {
    column-count: 3;
    column-gap: 24px;
}

/* Speaker Card */
.speaker-card {
    background: #FFFFFF;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    break-inside: avoid;
    margin-bottom: 24px;
}

.speaker-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #D13736;
}

/* Speaker Header */
.speaker-header {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.speaker-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 4px 0;
    letter-spacing: -0.025em;
}

.speaker-title {
    font-size: 14px;
    font-weight: 600;
    color: #D13736;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

/* Speaker Meta */
.speaker-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.speaker-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
}

.speaker-badge svg {
    color: #D13736;
    flex-shrink: 0;
}

.speaker-meta-divider {
    color: #d1d5db;
    font-weight: 300;
}

/* Speaker Topics */
.speaker-topics {
    margin-bottom: 24px;
}

.speaker-topics-heading {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
    margin: 0 0 12px 0;
}

.speaker-topics-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.speaker-topics-list li {
    font-size: 15px;
    line-height: 1.5;
    color: #1A1A1A;
    padding-left: 20px;
    position: relative;
}

.speaker-topics-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #D13736;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.speaker-card:hover .speaker-topics-list li::before {
    transform: translateX(2px);
}

/* Speaker Kit Link */
.speaker-kit-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #1A1A1A;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    transition: all 0.2s ease;
    align-self: flex-start;
    background: transparent;
}

.speaker-kit-link:hover {
    background: #f8f6f6;
    border-color: #6b7280;
}

.speaker-kit-link svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.speaker-kit-link:hover svg {
    transform: translateY(2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .team-speakers-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .team-speakers {
        padding: 64px 0;
    }

    .team-speakers-heading {
        font-size: 2rem;
    }

    .team-speakers-header {
        margin-bottom: 40px;
    }

    .team-speakers-guidelines {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .team-speakers-grid {
        column-count: 1;
    }

    .speaker-card {
        padding: 24px;
    }

    .speaker-name {
        font-size: 1.25rem;
    }

    .speaker-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .speaker-meta-divider {
        display: none;
    }
}

/* ============================================
   BLOG ARCHIVE PAGE
   ============================================ */

.archive-list {
    display: flex;
    flex-direction: column;
}

.archive-entry {
    padding: 32px 0;
    border-bottom: 1px solid #f0f0f0;
}

.archive-entry:first-child {
    padding-top: 0;
}

.archive-entry-date {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #9ca3af;
    margin-bottom: 8px;
}

.archive-entry-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.archive-entry-title:hover {
    color: #D13736;
}

.archive-empty {
    font-size: 1.125rem;
    color: #9ca3af;
    padding: 64px 0;
}

@media (max-width: 768px) {
    .archive-entry-title {
        font-size: 1.25rem;
    }
}

/* ============================================
   COMPANY NEWS PAGE
   ============================================ */

.news-main {
    width: 100%;
    max-width: 100%;
    background: #FFFFFF;
    padding: 96px 0;
}

.news-content-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
    display: flex;
    gap: 64px;
}

/* News Articles List */
.news-articles {
    flex: 2;
}

.news-list {
    display: flex;
    flex-direction: column;
}

.news-entry {
    padding: 32px 0;
    border-bottom: 1px solid #f0f0f0;
}

.news-entry:first-child {
    padding-top: 0;
}

.news-entry-date {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #9ca3af;
    margin-bottom: 8px;
}

.news-entry-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-entry-title:hover {
    color: #D13736;
}

.news-empty {
    font-size: 1.125rem;
    color: #9ca3af;
    padding: 64px 0;
}

/* News Sidebar */
.news-sidebar {
    flex: 1;
    min-width: 0;
}

.news-sidebar-sticky {
    position: sticky;
    top: 112px;
}

.news-sidebar-heading {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

/* Company Fact Cards */
.news-facts-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-fact-card {
    padding: 24px;
}

.news-fact-card.fact-accent {
    background: #f8f6f6;
    border-left: 4px solid #D13736;
}

.news-fact-card.fact-bordered {
    background: #FFFFFF;
    border: 1px solid #f0f0f0;
}

.news-fact-card.fact-muted {
    background: #f8f6f6;
    border-left: 4px solid rgba(209, 55, 54, 0.2);
}

.news-fact-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #6b7280;
    margin-bottom: 4px;
}

.news-fact-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: -0.025em;
}

.fact-accent .news-fact-value {
    color: #D13736;
}

.news-fact-value .fact-suffix {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #1A1A1A;
    margin-left: 4px;
}

.news-fact-value .fact-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.25rem;
    text-transform: none;
}

@media (max-width: 768px) {
    .news-content-wrapper {
        flex-direction: column;
        gap: 48px;
        padding: 0 24px;
    }

    .news-main {
        padding: 64px 0;
    }

    .news-entry-title {
        font-size: 1.25rem;
    }

    .news-fact-value {
        font-size: 1.5rem;
    }
}

/* ============================================
   NEWS ARTICLE PAGE
   ============================================ */

.news-article {
    background: #FFFFFF;
}

.news-article-header {
    padding: 80px 0 64px;
}

.news-article-header-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 100px;
}

.news-article-back {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #9ca3af;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    transition: color 0.3s;
}

.news-article-back:hover {
    color: #D13736;
}

.news-article-date {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #9ca3af;
    margin-bottom: 16px;
}

.news-article-title {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: #1A1A1A;
}

/* Article Body */
.news-article-body {
    padding: 0 0 80px;
}

.news-article-body-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 100px;
    font-size: 18px;
    line-height: 1.8;
    color: #1A1A1A;
}

.news-article-body-inner h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-top: 48px;
    margin-bottom: 24px;
    line-height: 1.3;
    color: #1A1A1A;
}

.news-article-body-inner h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 16px;
    line-height: 1.3;
    color: #1A1A1A;
}

.news-article-body-inner p {
    margin-bottom: 24px;
}

.news-article-body-inner ul,
.news-article-body-inner ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.news-article-body-inner li {
    margin-bottom: 12px;
}

.news-article-body-inner strong {
    font-weight: 700;
    color: #1A1A1A;
}

.news-article-body-inner em {
    font-style: italic;
}

.news-article-body-inner blockquote {
    border-left: 4px solid #D13736;
    padding-left: 24px;
    margin: 32px 0;
    font-size: 20px;
    font-style: italic;
    color: #737373;
}

/* Article End */
.news-article-end {
    padding: 0 0 96px;
    border-top: 1px solid #e5e5e5;
}

.news-article-end-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 100px 0;
    text-align: center;
}

.news-article-end-divider {
    width: 80px;
    height: 2px;
    background: #D13736;
    margin: 0 auto 32px;
}

.news-article-end-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 48px;
    background: #1A1A1A;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s;
}

.news-article-end-button:hover {
    background: #D13736;
}

@media (max-width: 768px) {
    .news-article-header {
        padding: 48px 0 48px;
    }

    .news-article-header-inner,
    .news-article-body-inner,
    .news-article-end-inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .news-article-back {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .news-article-title {
        font-size: 32px;
    }

    .news-article-body-inner {
        font-size: 16px;
    }

    .news-article-body-inner h2 {
        font-size: 24px;
    }
}

/* ============================================
   CAREERS PAGE
   ============================================ */

.careers-main {
    width: 100%;
    max-width: 100%;
    background: #FFFFFF;
    padding: 96px 0;
}

.careers-content-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
    display: flex;
    gap: 64px;
}

/* Main Content Column */
.careers-content {
    flex: 2;
}

.careers-section {
    margin-bottom: 64px;
}

.careers-section:last-child {
    margin-bottom: 0;
}

.careers-section-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1A1A1A;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.careers-section-text {
    font-size: 18px;
    line-height: 1.8;
    color: #1A1A1A;
    margin-bottom: 0;
}

/* WeChat QR Section & International Section - Matching Styles */
.careers-wechat,
.careers-international {
    background: linear-gradient(135deg, #f8f6f6 0%, #ffffff 100%);
    border-left: 4px solid #D13736;
    padding: 40px;
    border-radius: 2px;
}

.careers-wechat .careers-section-title,
.careers-international .careers-section-title {
    border-bottom-color: rgba(209, 55, 54, 0.2);
}

.careers-qr-container {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.careers-qr-wrapper {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.careers-qr-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.careers-qr-code {
    width: 200px;
    height: 200px;
    display: block;
}

.careers-qr-caption {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    text-align: center;
    letter-spacing: 0.05em;
    margin: 0;
}

/* Locations Table */
.careers-locations {
    margin-top: 72px;
}

.careers-table-wrapper {
    overflow-x: auto;
    margin-top: 24px;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.careers-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
}

.careers-table thead {
    background: linear-gradient(180deg, #f8f6f6 0%, #f5f5f5 100%);
}

.careers-table-header {
    padding: 20px 24px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1A1A1A;
    border-bottom: 2px solid #e5e5e5;
}

.careers-table-header:first-child {
    width: 30%;
}

.careers-table-row {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.careers-table-row:last-child {
    border-bottom: none;
}

.careers-table-row:hover {
    background-color: #fafafa;
}

.careers-table-city {
    padding: 28px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    vertical-align: top;
    position: relative;
}

.careers-table-city::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background: #D13736;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.careers-table-row:hover .careers-table-city::before {
    opacity: 1;
}

.careers-table-roles {
    padding: 24px;
    vertical-align: top;
}

.careers-roles-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.careers-roles-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #1A1A1A;
    padding: 8px 0 8px 20px;
    position: relative;
}

.careers-roles-list li::before {
    content: '�?;
    position: absolute;
    left: 0;
    color: #D13736;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.careers-table-row:hover .careers-roles-list li::before {
    transform: translateX(2px);
}

/* Sidebar */
.careers-sidebar {
    flex: 1;
    min-width: 0;
}

.careers-sidebar-sticky {
    position: sticky;
    top: 112px;
}

.careers-sidebar-heading {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

/* Company Fact Cards */
.careers-facts-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.careers-fact-card {
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.careers-fact-card:hover {
    transform: translateX(4px);
}

.careers-fact-card.fact-accent {
    background: #f8f6f6;
    border-left: 4px solid #D13736;
}

.careers-fact-card.fact-bordered {
    background: #FFFFFF;
    border: 1px solid #f0f0f0;
}

.careers-fact-card.fact-muted {
    background: #f8f6f6;
    border-left: 4px solid rgba(209, 55, 54, 0.2);
}

.careers-fact-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #6b7280;
    margin-bottom: 6px;
}

.careers-fact-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: -0.025em;
    line-height: 1.4;
}

.fact-accent .careers-fact-value {
    color: #D13736;
}

/* Responsive */
@media (max-width: 768px) {
    .careers-content-wrapper {
        flex-direction: column;
        gap: 48px;
        padding: 0 24px;
    }

    .careers-main {
        padding: 64px 0;
    }

    .careers-section {
        margin-bottom: 48px;
    }

    .careers-wechat {
        padding: 24px;
    }

    .careers-qr-code {
        width: 160px;
        height: 160px;
    }

    .careers-table-wrapper {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .careers-table-header,
    .careers-table-city,
    .careers-table-roles {
        padding: 16px;
    }

    .careers-table-city {
        font-size: 14px;
    }

    .careers-roles-list li {
        font-size: 14px;
    }
}


/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-main {
    width: 100%;
    max-width: 100%;
    background: #FFFFFF;
    padding: 96px 0;
}

.contact-content-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
    display: flex;
    gap: 64px;
}

/* Main Content Column */
.contact-content {
    flex: 2;
}

.contact-section {
    margin-bottom: 80px;
}

.contact-section:last-child {
    margin-bottom: 0;
}

.contact-section-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1A1A1A;
    margin-bottom: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.contact-section-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* ---- Contact Form ---- */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form-group-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #D13736;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid #F0F0F0;
}

.contact-form-group:first-child .contact-form-group-title {
    border-top: none;
    padding-top: 0;
}

.contact-form-row {
    display: flex;
    gap: 20px;
}

.contact-form-row-half .contact-field {
    flex: 1;
    min-width: 0;
}

.contact-field-full {
    width: 100%;
}

.contact-label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #374151;
    margin-bottom: 8px;
}

.contact-required {
    color: #D13736;
    font-weight: 700;
}

.contact-input,
.contact-select,
.contact-textarea {
    width: 100%;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    color: #1A1A1A;
    background: #FAFAFA;
    border: 1px solid #E5E7EB;
    border-radius: 2px;
    padding: 14px 16px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    outline: none;
    box-sizing: border-box;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

.contact-input:hover,
.contact-select:hover,
.contact-textarea:hover {
    border-color: #D1D5DB;
    background: #FFFFFF;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
    border-color: #D13736;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(209, 55, 54, 0.08);
}

/* Select dropdown */
.contact-select-wrapper {
    position: relative;
}

.contact-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 48px;
}

.contact-select:invalid,
.contact-select option[value=""][disabled] {
    color: #9CA3AF;
}

.contact-select option {
    color: #1A1A1A;
}

.contact-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6b7280;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.contact-select-arrow .material-symbols-outlined {
    font-size: 20px;
}

/* Textarea */
.contact-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

/* Submit button */
.contact-form-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 8px;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #FFFFFF;
    background: #1A1A1A;
    border: none;
    padding: 16px 36px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-submit:hover {
    background: #D13736;
    transform: translateY(-1px);
}

.contact-submit:active {
    transform: translateY(0);
}

.contact-submit-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.contact-submit:hover .contact-submit-arrow {
    transform: translateX(4px);
}

.contact-form-note {
    font-size: 12px;
    color: #9CA3AF;
    line-height: 1.5;
}


/* ---- Office Cards ---- */

.contact-offices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-office-card {
    background: #FAFAFA;
    border: 1px solid #F0F0F0;
    padding: 32px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-office-card:hover {
    border-color: rgba(209, 55, 54, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.contact-office-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E7EB;
}

.contact-office-label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #D13736;
    margin-bottom: 4px;
}

.contact-office-city {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: -0.02em;
    margin: 0;
}

.contact-office-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-office-address {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #4B5563;
    margin: 0;
}

.contact-office-email {
    display: inline-flex;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1A1A1A;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.contact-office-email::before {
    content: '→';
    margin-right: 6px;
    font-size: 12px;
    color: #D13736;
    transition: transform 0.2s ease;
}

.contact-office-card:hover .contact-office-email::before {
    transform: translateX(3px);
}

.contact-office-email:hover {
    color: #D13736;
}


/* ---- Contact Sidebar ---- */

.contact-sidebar {
    flex: 1;
    min-width: 0;
}

.contact-sidebar-sticky {
    position: sticky;
    top: 112px;
}

.contact-sidebar-heading {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.contact-facts-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-fact-card {
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-fact-card:hover {
    transform: translateX(4px);
}

.contact-fact-card.fact-accent {
    background: #f8f6f6;
    border-left: 4px solid #D13736;
}

.contact-fact-card.fact-bordered {
    background: #FFFFFF;
    border: 1px solid #f0f0f0;
}

.contact-fact-card.fact-muted {
    background: #f8f6f6;
    border-left: 4px solid rgba(209, 55, 54, 0.2);
}

.contact-fact-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #6b7280;
    margin-bottom: 6px;
}

.contact-fact-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: -0.025em;
    line-height: 1.4;
}

.fact-accent .contact-fact-value {
    color: #D13736;
}


/* ---- Contact Page Responsive ---- */

@media (max-width: 1024px) {
    .contact-content-wrapper {
        padding: 0 48px;
        gap: 48px;
    }

    .contact-offices-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .contact-office-card {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .contact-main {
        padding: 64px 0;
    }

    .contact-content-wrapper {
        flex-direction: column;
        gap: 48px;
        padding: 0 24px;
    }

    .contact-section {
        margin-bottom: 56px;
    }

    .contact-form-row-half {
        flex-direction: column;
        gap: 24px;
    }

    .contact-form-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .contact-submit {
        width: 100%;
        justify-content: center;
        padding: 18px 36px;
    }

    .contact-offices-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-office-card {
        padding: 24px;
    }

    .contact-office-city {
        font-size: 18px;
    }
}

/* ============================================================
   Research Reports Page (.rr-*)
   ============================================================ */

/* Hero CTA */
.rr-hero-cta {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 28px;
    background: #C0392B;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease;
}
.rr-hero-cta:hover {
    background: #a93226;
}

/* ── Overview ── */
.rr-overview {
    background: #F5F4F2;
    padding: 96px 0;
}
.rr-overview-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: start;
}
.rr-overview-label-wrap {
    padding-top: 4px;
}
.rr-overview-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C0392B;
    margin-bottom: 12px;
}
.rr-overview-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0;
}
.rr-overview-body p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #2a2a2a;
    margin: 0 0 24px;
}
.rr-overview-body p:last-child {
    margin-bottom: 0;
}

/* ── Latest Report Feature ── */
.rr-feature {
    background: #111111;
    padding: 96px 0;
}
.rr-feature-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}
.rr-feature-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C0392B;
    margin-bottom: 12px;
}
.rr-feature-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 48px;
}
.rr-feature-card {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 72px;
    align-items: start;
}
.rr-feature-cover {
    position: sticky;
    top: 80px;
}
.rr-feature-cover-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: #2a2a2a;
    border: 1px solid #333;
}
.rr-feature-edition {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 16px;
}
.rr-feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0 0 24px;
}
.rr-feature-summary {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #aaaaaa;
    margin: 0 0 40px;
}
.rr-takeaways {
    border-top: 1px solid #2a2a2a;
    padding-top: 32px;
    margin-bottom: 40px;
}
.rr-takeaways-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C0392B;
    margin: 0 0 20px;
}
.rr-takeaways-list {
    margin: 0;
    padding: 0 0 0 20px;
    list-style: decimal;
}
.rr-takeaways-list li {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 10px;
}
.rr-download-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #C0392B;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease;
}
.rr-download-btn:hover {
    background: #a93226;
}

/* ── Methodology ── */
.rr-methodology {
    background: #F5F4F2;
    padding: 96px 0;
}
.rr-methodology-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}
.rr-methodology-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C0392B;
    margin-bottom: 12px;
}
.rr-methodology-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0 0 24px;
}
.rr-methodology-meta {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    color: #444;
    margin-bottom: 56px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.rr-meta-sep {
    color: #bbb;
}
.rr-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 64px;
    margin-bottom: 48px;
}
.rr-stat-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.rr-stat-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 4px;
    border-bottom: 2px solid #C0392B;
    padding-bottom: 8px;
}
.rr-stat-row {
    display: grid;
    grid-template-columns: 140px 1fr 40px;
    align-items: center;
    gap: 12px;
}
.rr-stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    color: #444;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rr-stat-bar-wrap {
    background: #e0dedd;
    height: 8px;
    border-radius: 2px;
    overflow: hidden;
}
.rr-stat-bar {
    height: 100%;
    background: #C0392B;
    border-radius: 2px;
}
.rr-stat-pct {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: right;
}
.rr-methodology-footnote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 24px;
    margin: 0;
}

/* ── Past Reports ── */
.rr-past {
    background: #F5F4F2;
    padding: 96px 0;
}
.rr-past-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}
.rr-past-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C0392B;
    margin-bottom: 12px;
}
.rr-past-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0 0 48px;
}
.rr-past-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.rr-report-card {
    background: #ffffff;
    border: 1px solid #e0dedd;
    transition: border-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}
.rr-report-card:hover {
    border-color: #C0392B;
    transform: translateY(-4px);
}
.rr-report-cover {
    width: 100%;
    aspect-ratio: 3/4;
    background: #e8e6e3;
}
.rr-report-info {
    padding: 24px;
}
.rr-report-edition {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
}
.rr-report-date {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    color: #888;
    margin: 0 0 4px;
}
.rr-report-n {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    color: #888;
    margin: 0 0 16px;
}
.rr-report-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #C0392B;
    text-decoration: none;
    letter-spacing: 0.05em;
}
.rr-report-link:hover {
    color: #a93226;
}
.rr-report-link--soon {
    color: #bbb;
    cursor: default;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .rr-overview-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 48px;
    }
    .rr-feature-inner,
    .rr-methodology-inner,
    .rr-past-inner {
        padding: 0 48px;
    }
    .rr-feature-card {
        grid-template-columns: 260px 1fr;
        gap: 48px;
    }
    .rr-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rr-past-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .rr-overview,
    .rr-feature,
    .rr-methodology,
    .rr-past {
        padding: 64px 0;
    }
    .rr-overview-inner,
    .rr-feature-inner,
    .rr-methodology-inner,
    .rr-past-inner {
        padding: 0 24px;
    }
    .rr-feature-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .rr-feature-cover {
        position: static;
        max-width: 240px;
    }
    .rr-feature-title {
        font-size: 28px;
    }
    .rr-stat-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .rr-stat-row {
        grid-template-columns: 120px 1fr 36px;
    }
    .rr-past-grid {
        grid-template-columns: 1fr;
    }
    .rr-methodology-meta {
        flex-direction: column;
        gap: 4px;
    }
    .rr-meta-sep {
        display: none;
    }
}


/* ============================================================
   CHINA READY TRAINING (.cr-*)
   ============================================================ */

/* Overview */
.cr-overview {
    background: #F5F4F2;
    padding: 80px 0;
}
.cr-overview-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px;
}
.cr-overview-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0 0 40px;
}
.cr-overview-body p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #3a3a3a;
    margin: 0 0 20px;
}
.cr-overview-body p:last-child {
    margin-bottom: 0;
}

/* Content Outline */
.cr-outline {
    background: #111111;
    padding: 80px 0;
}
.cr-outline-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
}
.cr-outline-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 48px;
}
.cr-outline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.cr-module {
    background: #1e1e1e;
    border: 1px solid #333333;
    padding: 36px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.cr-module-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: #C0392B;
    flex-shrink: 0;
    width: 52px;
}
.cr-module-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.3;
}
.cr-module-topics {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cr-module-topics li {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
}
.cr-module-topics li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #C0392B;
}

/* CTA */
.cr-cta {
    background: #C0392B;
    padding: 80px 0;
    text-align: center;
}
.cr-cta-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
}
.cr-cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.2;
}
.cr-cta-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin: 0 0 36px;
}
.cr-cta-btn {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #C0392B;
    background: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.cr-cta-btn:hover {
    background: #111111;
    color: #ffffff;
}

/* China Ready — responsive */
@media (max-width: 900px) {
    .cr-outline-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .cr-overview-heading,
    .cr-outline-heading,
    .cr-cta-heading {
        font-size: 30px;
    }
    .cr-module {
        flex-direction: column;
        gap: 12px;
        padding: 24px;
    }
    .cr-explainer-stat {
        font-size: 40px;
    }
}


/* ============================================================
   WHITEPAPERS LISTING (.wp-*)
   ============================================================ */

/* List section */
.wp-list {
    background: #F5F4F2;
    padding: 80px 0;
}
.wp-list-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
}
.wp-list-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 64px;
    line-height: 1.15;
}

/* Individual whitepaper item */
.wp-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 56px;
    align-items: start;
    padding: 56px 0;
    border-top: 1px solid #dddad7;
}
.wp-item:last-child {
    border-bottom: 1px solid #dddad7;
}
.wp-item--featured .wp-item-book {
    background: #C0392B;
}

/* Book cover */
.wp-item-cover {
    flex-shrink: 0;
}
.wp-item-book {
    width: 160px;
    height: 220px;
    background: #1a1a1a;
    border-radius: 4px;
    box-shadow: 6px 6px 0 0 rgba(0,0,0,0.18);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
    cursor: default;
}
.wp-item-book:hover {
    transform: rotate(0deg);
}
.wp-item-book-inner {
    position: absolute;
    inset: 12px;
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
    color: #ffffff;
}
.wp-item-cover {
    position: relative;
}
.wp-item-book-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.wp-item-book-bottom {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.wp-item-book-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}
.wp-item-book-edition {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 9px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
}

/* Content side */
.wp-item-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.wp-item-badge {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    background: #C0392B;
    padding: 4px 10px;
    align-self: flex-start;
}
.wp-item-copub {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
}
.wp-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.25;
}
.wp-item-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #5a5a5a;
    margin: 0;
}
.wp-item-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.wp-item-highlights li {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #3a3a3a;
    padding-left: 20px;
    position: relative;
}
.wp-item-highlights li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #C0392B;
    font-weight: 700;
}
.wp-item-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.wp-item-meta-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    background: #e8e5e2;
    padding: 4px 10px;
}
.wp-item-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-top: 4px;
}
.wp-btn-primary {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    background: #C0392B;
    padding: 14px 28px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.wp-btn-primary:hover {
    background: #a93226;
}
.wp-btn-disabled {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #aaa;
    border: 1px solid #ddd;
    padding: 14px 28px;
}

/* Upcoming whitepaper — full-width dark band */
.wp-upcoming {
    background: #C0392B;
    padding: 96px 40px;
    text-align: center;
}
.wp-upcoming-inner {
    max-width: 720px;
    margin: 0 auto;
}
.wp-upcoming-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin: 0 0 20px;
}
.wp-upcoming-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 24px;
}
.wp-upcoming-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
    margin: 0 0 40px;
}
.wp-btn-notify {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #C0392B;
    background: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.wp-btn-notify:hover {
    background: #111111;
    color: #ffffff;
}

/* Whitepapers — responsive */
@media (max-width: 768px) {
    .wp-item {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .wp-item-book {
        width: 120px;
        height: 165px;
    }
    .wp-list-heading,
    .wp-upcoming-heading {
        font-size: 30px;
    }
    .wp-item-title {
        font-size: 22px;
    }
}



/* ============================================================
   CHINA TRAVEL ACADEMY PAGE
   ============================================================ */

/* Page wrapper */
.cta-page {
    padding-top: 100px;
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    color: #0f172a;
    background: #f8f6f6;
}

/* Inner container */
.cta-acad-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

/* Shared typography */
.cta-section-title {
    color: #001a33;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 24px;
}
.cta-section-desc {
    color: #475569;
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

/* Shared buttons */
.cta-btn-primary {
    display: inline-block;
    background: #c6102e;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: opacity 0.2s;
}
.cta-btn-primary:hover { opacity: 0.88; }
.cta-btn-outline {
    display: inline-block;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #001a33;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s;
}
.cta-btn-outline:hover { background: #f8fafc; }

/* Floating animation */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.cta-float-card { animation: bounce-slow 3s ease-in-out infinite; }
.cta-float-card.delay-1 { animation-delay: 0.5s; }
.cta-float-card.delay-2 { animation-delay: 1s; }
.cta-float-card.delay-3 { animation-delay: 1.5s; }

/* Hero */
.cta-hero { background: #f8f6f6; padding: 80px 0 96px; }
.cta-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cta-hero-tag {
    display: inline-block;
    background: #c6102e;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.cta-hero-title {
    color: #001a33;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 24px;
}
.cta-hero-title .accent { color: #c6102e; }
.cta-hero-lead {
    color: #475569;
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 30rem;
    margin: 0 0 32px;
}
.cta-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
/* Centered mockup variant (china-travel-academy) */
.cta-hero-dark .cta-hero-title { color: #001a33; }
.cta-hero-dark .cta-hero-lead { color: #475569; max-width: 36rem; margin: 0 auto 32px; }
.cta-hero-dark .cta-hero-actions { justify-content: center; }
.cta-hero-text { text-align: center; max-width: 860px; margin: 0 auto 64px; }
.cta-btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.cta-btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
/* Desktop browser mockup */
.cta-hero-mockup {
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
    padding-bottom: 80px;
}
.cta-mockup-browser {
    border-radius: 1rem 1rem 0.75rem 0.75rem;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}
.cta-mockup-bar {
    background: #0f172a;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.cta-mockup-dots { display: flex; gap: 6px; }
.cta-mockup-dot { width: 12px; height: 12px; border-radius: 9999px; }
.cta-mockup-dot-red    { background: #ef4444; }
.cta-mockup-dot-yellow { background: #eab308; }
.cta-mockup-dot-green  { background: #22c55e; }
.cta-mockup-url { flex: 1; max-width: 280px; height: 22px; background: #1e293b; border-radius: 6px; margin: 0 auto; }
.cta-mockup-screenshot { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; }
/* Phone overlay on mockup */
.cta-hero-phone-overlay {
    position: absolute;
    right: -2%;
    bottom: 0;
    width: 19%;
    z-index: 10;
}

/* Phone mockup */
.cta-phone-wrap { display: flex; justify-content: center; position: relative; padding: 0 80px; }
.cta-hero-phone-glow { position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle at 60% 40%, rgba(198,16,46,0.1), transparent 70%); filter: blur(40px); z-index: 0; pointer-events: none; }
.cta-phone-device { position: relative; z-index: 1; max-width: 320px; width: 100%; }
.cta-phone-outer {
    background: #fff;
    padding: 12px;
    border-radius: 3rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    border: 1px solid #f1f5f9;
}
.cta-phone-screen {
    background: #0f172a;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 211.11%; /* 19/9 ratio */
    border-radius: 2.5rem;
    border: 4px solid #1e293b;
    overflow: hidden;
    box-sizing: border-box;
}
.cta-phone-screen img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* Floating status pills */
.cta-float-pill {
    position: absolute;
    background: #fff;
    padding: 6px 10px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: 1px solid #f1f5f9;
    display: block;
    white-space: nowrap;
    font-size: 0.7rem;
}
@media (min-width: 768px) {
    .cta-float-pill { padding: 12px 16px; border-radius: 16px; font-size: 1rem; }
}
.cta-float-pill-inner { display: flex; align-items: center; gap: 6px; }
@media (min-width: 768px) {
    .cta-float-pill-inner { gap: 12px; }
}
.cta-float-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cta-float-icon-blue   { background: #dbeafe; }
.cta-float-icon-green  { background: #d1fae5; }
.cta-float-icon-amber  { background: #fef3c7; }
.cta-float-icon-purple { background: #ede9fe; }
.cta-float-icon .material-symbols-outlined { font-size: 0.75rem; }
.cta-float-icon-blue   .material-symbols-outlined { color: #2563eb; }
.cta-float-icon-green  .material-symbols-outlined { color: #059669; }
.cta-float-icon-amber  .material-symbols-outlined { color: #d97706; }
.cta-float-icon-purple .material-symbols-outlined { color: #7c3aed; }
.cta-float-label {
    font-size: 0.55rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1px;
}
.cta-float-value { font-size: 0.65rem; font-weight: 700; color: #001a33; margin: 0; }
/* Mobile: tight offsets so pills stay on-screen */
.cta-pill-tl { top: 16px; left: -12px; }
.cta-pill-tr { top: 20%; right: -10px; }
.cta-pill-br { bottom: 20%; right: -10px; }
.cta-pill-bl { bottom: 16px; left: -10px; }
/* Desktop: wider offsets */
@media (min-width: 768px) {
    .cta-float-label { font-size: 0.6rem; margin: 0 0 2px; }
    .cta-float-value { font-size: 0.75rem; }
    .cta-float-icon { width: 36px; height: 36px; }
    .cta-pill-tl { top: 40px; left: -48px; }
    .cta-pill-tr { top: 25%; right: -24px; }
    .cta-pill-br { bottom: 25%; right: -32px; }
    .cta-pill-bl { bottom: 40px; left: -40px; }
}

/* Stats strip */
.cta-stats { background: #001a33; padding: 56px 0; }
.cta-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.cta-stats-grid > div { padding: 0 32px; }
.cta-stats-grid > div + div { border-left: 1px solid #334155; }
.cta-stat-label {
    color: #94a3b8;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin: 0 0 8px;
}
.cta-stat-value { color: #fff; font-size: 2.5rem; font-weight: 900; margin: 0; }
.cta-stat-sep { /* separators now handled by cta-stats-grid > div + div */ }

/* Reliable access */
.cta-access { background: #fff; padding: 80px 0; }
.cta-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.cta-feature-list { display: flex; flex-direction: column; gap: 16px; }
.cta-feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}
.cta-feature-ic {
    background: rgba(198,16,46,0.08);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cta-feature-ic .material-symbols-outlined { color: #c6102e; }
.cta-feature-card h4 { color: #001a33; font-weight: 700; margin: 0 0 4px; font-size: 1rem; }
.cta-feature-card p { color: #64748b; font-size: 0.875rem; margin: 0; }

/* Mobile-first learning */
.cta-mobile { background: #f8fafc; padding: 80px 0; }
.cta-section-header { text-align: center; margin-bottom: 64px; }
.cta-section-header .cta-section-desc { max-width: 42rem; margin: 16px auto 0; }
/* Phone mockup grid for mobile learning section */
.cta-phone-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.cta-phone-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 0 4px; }
.cta-phone-shape-wrap { width: 100%; display: flex; justify-content: center; margin-bottom: 28px; }
.cta-phone-shape {
    position: relative;
    width: 100%;
    max-width: 150px;
}
.cta-phone-glow {
    position: absolute;
    top: -8%; left: -8%;
    width: 116%; height: 116%;
    border-radius: 2.5rem;
    pointer-events: none;
    z-index: 0;
}
.cta-phone-glow-red  { background: rgba(198,16,46,0.1); }
.cta-phone-glow-navy { background: rgba(0,26,51,0.1); }
.cta-phone-frame {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 8px;
    border-radius: 2.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid #f1f5f9;
    width: 100%;
    transition: transform 0.7s;
    box-sizing: border-box;
}
/* Padding-bottom trick: works in all browsers including old iOS Safari */
.cta-phone-screen-bg {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 211.11%; /* 19/9 ratio */
    border-radius: 1.6rem;
    overflow: hidden;
}
.cta-phone-screen-bg-red  { background: rgba(198,16,46,0.1); }
.cta-phone-screen-bg-navy { background: rgba(0,26,51,0.1); }
.cta-phone-screen-bg img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-icon-title { color: #001a33; font-weight: 700; font-size: 1.05rem; margin: 0 0 8px; }
.cta-icon-desc { color: #64748b; font-size: 0.875rem; line-height: 1.6; margin: 0; }

/* Certification programs */
.cta-cert { background: #fff; padding: 80px 0; }
.cta-tilted-img {
    background: #f8fafc;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
    border: 1px solid #e2e8f0;
}
.cta-tilted-img img { display: block; width: 100%; border-radius: 8px; }
.cta-check-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 16px; }
.cta-check-list li { display: flex; align-items: center; gap: 12px; }
.cta-check-list .material-symbols-outlined { color: #c6102e; }
.cta-check-list span:last-child { color: #001a33; font-weight: 500; }

/* Light courses & CMS */
.cta-courses { background: #f8fafc; padding: 80px 0; }
.cta-courses-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.cta-courses-row + .cta-courses-row { margin-top: 96px; }
.cta-video-mock {
    background: #001a33;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.cta-video-inner {
    background: #1e293b;
    border-radius: 8px;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* 4:3 ratio */
    border: 1px solid #334155;
    overflow: hidden;
}
.cta-video-inner > * {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-video-inner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-video-inner .material-symbols-outlined { color: #475569; font-size: 5rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.cta-cms-mock {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}
.cta-cms-inner {
    background: #f8fafc;
    border-radius: 8px;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 ratio */
    border: 1px solid #f1f5f9;
    overflow: hidden;
}
.cta-cms-inner > * {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-cms-inner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-cms-inner .material-symbols-outlined { color: #cbd5e1; font-size: 5rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Local access */
.cta-local { background: #fff; padding: 96px 0; text-align: center; }
.cta-local .cta-section-title { margin-bottom: 24px; }
.cta-local .cta-section-desc { max-width: 48rem; margin: 0 auto 64px; font-size: 1.15rem; }
.cta-browser-mock-wrap {
    position: relative;
    width: 100%;
}
.cta-browser-mock {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    width: 100%;
    max-width: 56rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.cta-browser-glow-br {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 128px;
    height: 128px;
    background: rgba(198,16,46,0.1);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}
.cta-browser-glow-tl {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 128px;
    height: 128px;
    background: rgba(0,26,51,0.1);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}
.cta-browser-bar {
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cta-browser-dots { display: flex; gap: 6px; }
.cta-browser-dot { width: 12px; height: 12px; border-radius: 50%; }
.cta-dot-red   { background: #f87171; }
.cta-dot-amber { background: #fbbf24; }
.cta-dot-green { background: #34d399; }
.cta-browser-url {
    margin: 0 auto;
    background: rgba(255,255,255,0.6);
    border-radius: 6px;
    padding: 3px 16px;
    font-size: 0.625rem;
    color: #94a3b8;
    font-weight: 500;
}
.cta-browser-screen {
    background: #0f172a;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 ratio */
    overflow: hidden;
}
.cta-browser-screen img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Distribution network */
.cta-distrib { background: #f8fafc; padding: 80px 0; border-top: 1px solid #f1f5f9; }
.cta-distrib-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 896px; margin: 0 auto; }
.cta-distrib-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
}
.cta-distrib-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.cta-distrib-card-body { padding: 24px; border-bottom: 1px solid #f1f5f9; }
.cta-distrib-card-body h3 { color: #001a33; font-size: 1.25rem; font-weight: 700; margin: 0 0 8px; }
.cta-distrib-card-body p { color: #64748b; font-size: 0.875rem; margin: 0; }
.cta-distrib-card-visual {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 ratio */
    background: #f1f5f9;
    overflow: hidden;
}
.cta-distrib-card-visual span {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: #94a3b8;
    font-size: 1.875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.cta-distrib-card-visual img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* Success stories */
.cta-stories { background: #fff; padding: 80px 0; border-top: 1px solid #f1f5f9; }
.cta-stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.cta-story-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}
.cta-story-card-head { margin-bottom: 24px; }
.cta-story-card-head h3 { color: #001a33; font-size: 1.4rem; font-weight: 700; margin: 0 0 8px; }
.cta-story-bar { height: 4px; width: 48px; background: #c6102e; border-radius: 9999px; }
.cta-story-body { display: flex; flex-direction: column; gap: 16px; flex: 1; }
.cta-meta-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin: 0 0 4px;
}
.cta-meta-value { color: #001a33; font-weight: 600; margin: 0; }
.cta-meta-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cta-story-screens {
    display: flex;
    gap: 12px;
    justify-content: center;
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
    margin: 4px 0;
}
.cta-story-phone {
    width: 120px;
    height: 253px;
    background: #0f172a;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    flex-shrink: 0;
}
.cta-story-phone img { display: block; width: 100%; height: 100%; object-fit: cover; }
.cta-story-quote { padding-top: 16px; border-top: 1px solid #f1f5f9; }
.cta-story-quote p { font-size: 0.875rem; color: #475569; font-style: italic; margin: 0; }

/* Responsive */
@media (max-width: 1200px) {
    .cta-hero-title { font-size: 2.75rem; }
    .cta-hero-mockup { padding-bottom: 64px; }
    .cta-hero-phone-overlay { width: 17%; }
    .cta-phone-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 1024px) {
    .cta-acad-inner { padding: 0 40px; }
    .cta-two-col,
    .cta-courses-row { grid-template-columns: 1fr; gap: 40px; }
    .cta-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .cta-hero-title { font-size: 2.5rem; }
    .cta-hero-mockup { padding-bottom: 56px; }
    .cta-hero-phone-overlay { width: 16%; right: -1%; }
    .cta-phone-wrap { margin-top: 0; padding: 0 80px; justify-content: center; }
    .cta-phone-device { max-width: 280px; }
    .cta-stories-grid { grid-template-columns: 1fr 1fr; }
    .cta-section-title { font-size: 1.875rem; }
    .cta-section-header { margin-bottom: 40px; }
    .cta-phone-grid { grid-template-columns: repeat(3, 1fr); }
    /* Fix stacking order for CMS row (mock is first child, text second) */
    .cta-courses-row:nth-child(2) > *:first-child { order: 2; }
    .cta-courses-row:nth-child(2) > *:last-child  { order: 1; }
}
@media (max-width: 768px) {
    .cta-acad-inner { padding: 0 20px; }
    .cta-hero { padding: 40px 0 56px; }
    .cta-hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-hero-dark .cta-hero-text { margin-bottom: 40px; }
    .cta-hero-title { font-size: 1.75rem; }
    .cta-hero-lead { font-size: 1rem; }
    .cta-hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
    .cta-hero-dark .cta-hero-actions { align-items: center; }
    .cta-hero-mockup { padding-bottom: 0; }
    .cta-hero-phone-overlay { display: none; }
    .cta-float-pill { display: none; }
    .cta-btn-primary,
    .cta-btn-outline { width: 100%; text-align: center; box-sizing: border-box; }
    .cta-phone-wrap { padding: 0 40px; justify-content: center; }
    .cta-phone-device { max-width: 220px; }
    .cta-section-title { font-size: 1.625rem; }
    .cta-section-desc { font-size: 1rem; }
    .cta-section-header { margin-bottom: 32px; }
    .cta-stats { padding: 40px 0; }
    .cta-stat-value { font-size: 1.875rem; }
    .cta-stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
    .cta-stats-grid > div { padding: 24px 16px; }
    .cta-stats-grid > div + div { border-left: none; border-top: 1px solid #334155; }
    .cta-stats-grid > div:nth-child(2) { border-left: 1px solid #334155; border-top: none; }
    .cta-stats-grid > div:nth-child(4) { border-left: 1px solid #334155; }
    .cta-access,
    .cta-mobile,
    .cta-cert,
    .cta-courses,
    .cta-distrib,
    .cta-stories { padding: 56px 0; }
    .cta-local { padding: 56px 0; }
    .cta-local .cta-section-desc { margin-bottom: 40px; font-size: 1rem; }
    .cta-phone-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
    .cta-phone-item { gap: 12px; }
    .cta-phone-shape { max-width: 120px; }
    .cta-phone-shape-wrap { margin-bottom: 12px; }
    .cta-icon-title { font-size: 0.9rem; }
    .cta-icon-desc { font-size: 0.8rem; }
    .cta-distrib-grid { grid-template-columns: 1fr; }
    .cta-stories-grid { grid-template-columns: 1fr; }
    .cta-courses-row + .cta-courses-row { margin-top: 48px; }
    .cta-tilted-img { transform: none; }
    .cta-check-list li { font-size: 0.9rem; }
    .cta-feature-card { padding: 16px; }
}

/* ===== Travel Trade Hub Page =====*/
.tth-pill-strip {
    background: #000;
    border-top: none;
    border-bottom: none;
    padding: 56px 0;
    position: sticky;
    top: 72px;
    z-index: 40;
    width: 100%;
}
.tth-pill-strip-inner {
    width: 100%;
    padding: 0 48px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.tth-pill-strip-inner::-webkit-scrollbar { display: none; }
.tth-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 24px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}
.tth-nav-pill .material-symbols-outlined {
    font-size: 0.95rem;
    transition: color 0.15s;
}
.tth-nav-pill:hover {
    color: #fff;
    border-bottom-color: #c6102e;
}
.tth-nav-pill:hover .material-symbols-outlined { color: #c6102e; }
.tth-pill-sep {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.25);
    flex-shrink: 0;
    margin: 0 4px;
}
@media (max-width: 768px) {
    .tth-pill-strip { padding: 40px 0; }
    .tth-pill-strip-inner { padding: 0 16px; justify-content: flex-start; }
    .tth-nav-pill { padding: 8px 12px; font-size: 0.65rem; gap: 5px; }
    .tth-pill-sep { margin: 0 2px; }
}

/* ===== Travel Trade Hub Page ===== */
.tth-cap { padding: 80px 0; }
.tth-cap-white { background: #fff; }
.tth-cap-gray  { background: #f8fafc; }
.tth-cap-navy  { background: #001a33; }

.tth-cap-rev > *:first-child { order: 2; }
.tth-cap-rev > *:last-child  { order: 1; }

.tth-cap-num {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #c6102e;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 20px;
}
.tth-cap-num::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #c6102e;
    flex-shrink: 0;
}
.tth-cap-h {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #001a33;
    margin: 0 0 20px;
}
.tth-cap-h-light  { color: #fff; }
.tth-cap-h-accent { color: #c6102e; }
.tth-cap-h-italic { font-style: italic; }
.tth-cap-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    color: #94a3b8;
    letter-spacing: -0.01em;
    margin-top: 8px;
    text-transform: lowercase;
    font-style: normal;
}
.tth-cap-sub-light { color: rgba(255,255,255,0.5); }
.tth-desc-light { color: rgba(255,255,255,0.7) !important; }

.tth-cap-features { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.tth-cap-feat { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; color: #001a33; }
.tth-cap-feat .material-symbols-outlined { color: #c6102e; font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.tth-cap-feat strong { display: block; font-weight: 700; }
.tth-feat-desc { display: block; font-size: 0.875rem; color: #64748b; font-weight: 400; margin-top: 2px; }

.tth-mock-phone-wrap { display: flex; justify-content: center; }

.tth-icon-row { display: flex; gap: 48px; margin-top: 28px; flex-wrap: wrap; }
.tth-icon-item { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.tth-icon-item .material-symbols-outlined { font-size: 2.25rem; color: #001a33; }
.tth-icon-label { font-size: 0.7rem; font-weight: 700; color: #001a33; text-transform: uppercase; letter-spacing: 0.1em; }

.tth-media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; padding-bottom: 48px; }
.tth-media-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    height: 0;
    padding-bottom: 133.33%;
    overflow: hidden;
}
.tth-media-card-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 12px;
}
.tth-media-card-img {
    flex: 1;
    background: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tth-media-card-img .material-symbols-outlined {
    font-size: 3rem;
    color: #94a3b8;
}
.tth-media-card-img-video { background: rgba(198,16,46,0.05); }
.tth-media-icon-video { color: rgba(198,16,46,0.3) !important; }
.tth-media-card-bar {
    height: 16px;
    background: #f1f5f9;
    border-radius: 4px;
    flex-shrink: 0;
}
.tth-media-card-offset { transform: translateY(48px); }

.tth-phone-outer-navy {
    background: rgba(255,255,255,0.08);
    padding: 12px;
    border-radius: 3rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 220px;
    width: 100%;
}
.tth-phone-screen-navy {
    background: rgba(255,255,255,0.05);
    position: relative;
    height: 0;
    padding-bottom: 211.11%;
    border-radius: 2.2rem;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}
.tth-phone-screen-navy .material-symbols-outlined {
    position: absolute;
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    color: #c6102e;
}

.tth-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tth-tag-pill {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}

.tth-earn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tth-earn-card {
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}
.tth-earn-card-dark { background: #001a33; color: #fff; }
.tth-earn-card-dark .material-symbols-outlined { color: #c6102e; font-size: 2rem; }
.tth-earn-card-light { background: #fff; border: 1px solid #e2e8f0; }
.tth-earn-card-light .material-symbols-outlined { color: #001a33; font-size: 2rem; }
.tth-earn-val { font-size: 1.75rem; font-weight: 900; color: #fff; margin: 0; }
.tth-earn-val-dark { color: #001a33; }
.tth-earn-lbl { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin: 0; }
.tth-earn-lbl-dark { color: #64748b; }
.tth-earn-progress { grid-column: 1 / -1; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px 24px; }
.tth-earn-progress .tth-progress { background: #e2e8f0; }
.tth-earn-progress .tth-progress-bar { background: #c6102e; }
.tth-earn-progress-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; color: #94a3b8; letter-spacing: 0.1em; margin: 8px 0 0; }

.tth-progress { height: 6px; border-radius: 9999px; background: rgba(255,255,255,0.1); margin-bottom: 12px; overflow: hidden; }
.tth-progress-bar { height: 100%; border-radius: 9999px; background: #c6102e; }
.tth-progress-bar-muted { background: rgba(255,255,255,0.2); }

.tth-reward-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-top: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.tth-reward-box .material-symbols-outlined { color: #001a33; font-size: 2.5rem; flex-shrink: 0; }
.tth-reward-box-title { font-weight: 700; color: #001a33; margin: 0 0 4px; font-size: 1rem; }
.tth-reward-box-desc  { font-size: 0.875rem; color: #64748b; margin: 0; line-height: 1.5; }

.tth-platforms { background: #fff; padding: 80px 0; text-align: center; border-top: 1px solid #f1f5f9; }
.tth-platforms-title { font-size: 2.5rem; font-weight: 900; color: #001a33; margin: 0 0 16px; letter-spacing: -0.02em; }
.tth-accent-wechat   { color: #c6102e; }
.tth-accent-whatsapp { color: #c6102e; }
.tth-platforms-desc { color: #64748b; font-size: 1rem; max-width: 36rem; margin: 0 auto 56px; line-height: 1.7; }

/* Platform phone mockups */
.tth-platform-phones { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; align-items: flex-start; }
.tth-plat-phone-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.tth-plat-phone { max-width: 220px; width: 220px; gap: 0; padding: 0; overflow: hidden; }
.tth-plat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    flex-shrink: 0;
}
.tth-plat-header .material-symbols-outlined { font-size: 1rem; color: #fff; }
.tth-plat-header-wechat  { background: #001a33; }
.tth-plat-header-whatsapp { background: #001a33; }
.tth-plat-header-title { font-size: 0.8rem; font-weight: 700; color: #fff; }
.tth-plat-header-sub { font-size: 0.6rem; color: rgba(255,255,255,0.7); display: block; }
.tth-plat-header-info { display: flex; flex-direction: column; align-items: center; }
.tth-plat-title-row { display: flex; align-items: center; gap: 6px; }
.tth-plat-brand-dot { width: 8px; height: 8px; border-radius: 9999px; flex-shrink: 0; }
.tth-plat-brand-dot-wechat   { background: #07c160; }
.tth-plat-brand-dot-whatsapp { background: #25d366; }
.tth-plat-avatar { width: 28px; height: 28px; border-radius: 9999px; background: rgba(255,255,255,0.3); flex-shrink: 0; }
.tth-plat-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 10px;
    background: #ece5dd;
    overflow: hidden;
}
.tth-plat-bubble {
    max-width: 80%;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 0.6rem;
    line-height: 1.4;
    color: #111;
}
.tth-plat-bubble-in  { background: #fff; align-self: flex-start; border-top-left-radius: 2px; }
.tth-plat-bubble-out { align-self: flex-end; border-top-right-radius: 2px; color: #fff; }
.tth-plat-bubble-wechat   { background: #001a33; }
.tth-plat-bubble-whatsapp { background: #001a33; }
.tth-plat-input {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: #f0f0f0;
    flex-shrink: 0;
}
.tth-plat-input-bar {
    flex: 1;
    height: 28px;
    background: #fff;
    border-radius: 9999px;
}
.tth-plat-send {
    width: 28px; height: 28px;
    border-radius: 9999px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.tth-plat-send .material-symbols-outlined { font-size: 0.9rem; color: #fff; }
.tth-plat-send-wechat   { background: #001a33; }
.tth-plat-send-whatsapp { background: #001a33; }
.tth-platform-label { font-size: 0.7rem; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.3em; }

.tth-crm-wrap {
    background: #001a33;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.tth-crm-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tth-crm-title .material-symbols-outlined { color: #c6102e; }
.tth-crm-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.tth-crm-stat { background: rgba(255,255,255,0.05); border-radius: 10px; padding: 16px 12px; }
.tth-crm-stat-label { font-size: 0.6rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 4px; }
.tth-crm-stat-value { font-size: 1.4rem; font-weight: 700; color: #fff; margin: 0; }
.tth-crm-stat-value-accent { color: #c6102e; }

/* Cap 03 Access grid — 5:7 asymmetric split */
.tth-col-57 { grid-template-columns: 5fr 7fr; }
/* Align visual column to top (for Access — matches Stitch items-start) */
.tth-col-top { align-items: start; }

/* Mockup screen frames */
.tth-screen-frame {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
}
.tth-screen-phone { aspect-ratio: 9 / 16; }
.tth-screen-square { aspect-ratio: 1; }
.tth-screen-43  { aspect-ratio: 4 / 3; }
.tth-screen-navy { background: #001a33; }
.tth-screen-navy .material-symbols-outlined { color: #c6102e; }
.tth-screen-quiz-card { border-left: 4px solid #c6102e; }

.tth-screen-image-block {
    flex: 1;
    background: #e2e8f0;
    border-radius: 12px;
    min-height: 80px;
}
.tth-screen-btns { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.tth-screen-btn { height: 40px; border-radius: 10px; flex-shrink: 0; }
.tth-screen-btn-crimson { background: rgba(198,16,46,0.1); }
.tth-screen-btn-light { background: rgba(0,26,51,0.05); }

.tth-mock-bar { height: 8px; background: #f1f5f9; border-radius: 9999px; flex-shrink: 0; }
.tth-mock-bar-light { background: rgba(255,255,255,0.15); }

.tth-quiz-icon-wrap {
    width: 48px; height: 48px;
    background: rgba(198,16,46,0.1);
    border-radius: 9999px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.tth-quiz-icon-wrap .material-symbols-outlined { color: #c6102e; font-size: 1.4rem; }

.tth-screen-navy-top { display: flex; justify-content: space-between; align-items: center; }
.tth-screen-navy-logo { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 8px; flex-shrink: 0; }

/* Cap 01 Learn grid */
.tth-learn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.tth-learn-right-col { display: flex; flex-direction: column; gap: 16px; margin-top: 48px; }

/* Cap 02 Ask grid */
.tth-ask-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.tth-ask-col-left { display: flex; flex-direction: column; gap: 16px; }
.tth-ask-right-frame { margin-top: 96px; }
.tth-chat-row { display: flex; align-items: center; gap: 12px; }
.tth-chat-avatar { width: 32px; height: 32px; border-radius: 9999px; background: #c6102e; flex-shrink: 0; }
.tth-chat-bubble { flex: 1; height: 24px; background: #f1f5f9; border-radius: 8px; }
.tth-chat-input-bar { height: 48px; background: #f8fafc; border-radius: 12px; border: 1px solid #e2e8f0; flex-shrink: 0; }
.tth-screen-dashed-center {
    flex: 1;
    border: 2px dashed #f1f5f9;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.tth-screen-dashed-center .material-symbols-outlined { font-size: 2.5rem; color: #e2e8f0; }
.tth-dark-pill-header { height: 32px; width: 96px; background: #001a33; border-radius: 9999px; margin-bottom: 8px; flex-shrink: 0; }

/* Cap 04 Event App phones */
.tth-event-phones { display: flex; gap: 24px; align-items: flex-start; }
.tth-event-phone {
    flex: 1;
    aspect-ratio: 9 / 16;
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.tth-event-phone-2 {
    margin-top: 48px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 28px;
}
.tth-qr-circle {
    width: 96px; height: 96px;
    border-radius: 9999px;
    border: 4px solid #c6102e;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.tth-qr-circle .material-symbols-outlined { color: #c6102e; font-size: 2rem; }
.tth-badge-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin: 0; }
.tth-event-pill-bar { height: 32px; width: 96px; background: #c6102e; border-radius: 9999px; flex-shrink: 0; }

/* Cap 05 Earn — square cards */
.tth-earn-card { aspect-ratio: 1; }

@media (max-width: 1024px) {
    .tth-cap-h { font-size: 2.5rem; }
    .tth-cap-sub { font-size: 1.25rem; }
    .tth-platforms-title { font-size: 2rem; }
    .tth-cap-rev > * { order: 0 !important; }
    .tth-learn-grid, .tth-ask-grid { grid-template-columns: 1fr; }
    .tth-learn-right-col { flex-direction: row; margin-top: 0; }
    .tth-learn-right-col .tth-screen-frame { flex: 1; }
    .tth-ask-right-frame { margin-top: 0; }
    .tth-event-phones { max-width: 360px; margin: 0 auto; }
    .tth-col-57 { grid-template-columns: 1fr; }
    .tth-col-top { align-items: center; }
}
@media (max-width: 768px) {
    .tth-cap { padding: 56px 0; }
    .tth-cap-h { font-size: 2rem; }
    .tth-cap-sub { font-size: 1.1rem; }
    .tth-platforms-title { font-size: 1.75rem; }
    .tth-platform-phones { gap: 24px; }
    .tth-plat-phone { width: 180px; max-width: 180px; }
    .tth-icon-row { gap: 24px; }
    .tth-earn-grid { grid-template-columns: 1fr; }
    .tth-crm-wrap { padding: 20px; }
    .tth-reward-box { flex-direction: column; text-align: center; }
    .tth-media-grid { grid-template-columns: 1fr 1fr; padding-bottom: 0; }
    .tth-media-card-offset { transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TNTM — The Next Travel Market
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────────────────────────── */
.tntm-hero {
    background: #f8f6f6;
    padding: 96px 0;
}
.tntm-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.tntm-hero-copy {
    text-align: left;
}
.tntm-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #001a33;
    margin: 24px 0 20px;
}
.tntm-hero-title .accent {
    color: #c6102e;
}
.tntm-hero-lead {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}

/* Browser mockup */
.tntm-browser-wrap {
    width: 100%;
}
.tntm-browser {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,26,51,0.12);
    overflow: hidden;
}
.tntm-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}
.tntm-browser-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}
.tntm-dot-r { background: #cbd5e1; }
.tntm-dot-y { background: #cbd5e1; }
.tntm-dot-g { background: #cbd5e1; }

.tntm-browser-body {
    background: #f1f5f9;
    padding: 20px;
    aspect-ratio: 16 / 10;
}
.tntm-wf-grid {
    display: grid;
    grid-template-columns: 3fr 9fr;
    gap: 12px;
    height: 100%;
}
.tntm-wf-sidebar {
    background: #fff;
    border-radius: 6px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.tntm-wf-line {
    height: 10px;
    background: #e2e8f0;
    border-radius: 4px;
    flex-shrink: 0;
}
.tntm-wf-line-3q { width: 75%; }
.tntm-wf-line-half { width: 50%; }
.tntm-wf-line-qtr { width: 25%; }
.tntm-wf-line-full { width: 100%; }
.tntm-wf-block {
    height: 28px;
    background: #f8fafc;
    border-radius: 4px;
    flex-shrink: 0;
}
.tntm-wf-main {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
}
.tntm-wf-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    flex-shrink: 0;
}
.tntm-wf-stat {
    height: 60px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.tntm-wf-table {
    flex: 1;
    background: #fff;
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
    overflow: hidden;
}
.tntm-wf-table-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid #f8fafc;
}
.tntm-wf-row-item {
    height: 24px;
    background: #f8fafc;
    border-radius: 4px;
    flex-shrink: 0;
}

/* ── Shared section styles ─────────────────────────────────────────────── */
.tntm-sect {
    padding: 96px 0;
}
.tntm-sect-white { background: #fff; }
.tntm-sect-gray  { background: #f8f6f6; }

.tntm-sect-header {
    margin-bottom: 52px;
    max-width: 700px;
}
.tntm-sect-header-right {
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}

.tntm-h2 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #001a33;
    margin: 0 0 16px;
}
.tntm-h2-light { color: #fff; white-space: nowrap; }

.tntm-lead {
    font-size: 1.0625rem;
    color: #4b5563;
    line-height: 1.7;
    max-width: 560px;
}
.tntm-sect-header-right .tntm-lead {
    margin-left: auto;
}

.tntm-sect-cta {
    margin-top: 44px;
    text-align: center;
}

/* ── Cards (Sellers / Buyers) ──────────────────────────────────────────── */
.tntm-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tntm-card {
    background: rgba(0,26,51,0.05);
    border: 1px solid rgba(0,26,51,0.1);
    border-radius: 12px;
    padding: 32px;
    transition: background 0.2s;
}
.tntm-card:hover { background: rgba(0,26,51,0.08); }
.tntm-card-white {
    background: #fff;
    border-color: #e2e8f0;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.tntm-card-white:hover { border-color: rgba(198,16,46,0.2); }
.tntm-card-icon {
    font-size: 2rem;
    color: #c6102e;
    display: block;
    margin-bottom: 16px;
}
.tntm-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #001a33;
    margin: 0 0 8px;
}
.tntm-card-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ── Organizers — header band ──────────────────────────────────────────── */
.tntm-org-header {
    background: #001a33;
    padding: 96px 0;
}
.tntm-org-header-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.tntm-cap-num-light {
    color: rgba(255,255,255,0.5);
    justify-content: center;
}
.tntm-cap-num-light::before {
    background: rgba(255,255,255,0.3);
}
.tntm-org-lead {
    font-size: 1.0625rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Organizers — feature sub-sections ────────────────────────────────── */
.tntm-feat {
    display: block;
    width: 100%;
}
.tntm-feat-sect {
    padding: 80px 0;
}
.tntm-feat-centered-sect {
    padding: 80px 0;
    text-align: center;
}
.tntm-feat-bg-white { background: #fff; }
.tntm-feat-bg-gray  { background: #f8f6f6; }

.tntm-feat-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.tntm-feat-rev > *:nth-child(1) { order: 2; }
.tntm-feat-rev > *:nth-child(2) { order: 1; }

.tntm-feat-icon-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.tntm-feat-icon {
    font-size: 2.5rem;
    color: #c6102e;
    flex-shrink: 0;
}
.tntm-feat-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #001a33;
    margin: 0;
}
.tntm-feat-desc {
    font-size: 1.0625rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 24px;
}

/* Checklist inside features */
.tntm-feat-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tntm-feat-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: #374151;
}
.tntm-check-icon {
    font-size: 1.25rem;
    color: #c6102e;
    flex-shrink: 0;
}

/* Wireframe visual box */
.tntm-feat-visual {
    /* takes up the visual column */
}
.tntm-feat-wf-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,26,51,0.08);
    aspect-ratio: 16 / 10;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.tntm-feat-wf-wide {
    max-width: 760px;
    margin: 36px auto 0;
}
.tntm-feat-mock-inner {
    background: #f8fafc;
    flex: 1;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px;
}
.tntm-feat-mock-icon-wrap {
    width: 68px;
    height: 68px;
    background: #001a33;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tntm-feat-mock-icon {
    font-size: 2rem;
    color: #fff;
}
.tntm-wf-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.tntm-wf-generic {
    background: repeating-linear-gradient(
        0deg,
        #e2e8f0 0px,
        #e2e8f0 8px,
        transparent 8px,
        transparent 20px
    );
    opacity: 0.5;
}

/* Centered layout inner */
.tntm-feat-center-inner {
    max-width: 900px;
    margin: 0 auto;
}
.tntm-feat-center-text {
    margin-bottom: 28px;
}
.tntm-feat-center-text .tntm-feat-icon-row {
    justify-content: center;
}
.tntm-feat-center-text .tntm-feat-desc {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 24px;
}

/* ── Translation ────────────────────────────────────────────────────────── */
.tntm-trans-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 64px;
}
.tntm-trans-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.tntm-trans-lead {
    max-width: none;
    margin-bottom: 28px;
}
.tntm-trans-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-self: center;
}
.tntm-trans-card {
    border-radius: 12px;
    padding: 32px;
    color: #fff;
}
.tntm-trans-card-navy { background: #001a33; }
.tntm-trans-card-red  { background: #c6102e; }
.tntm-trans-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 20px;
}
.tntm-trans-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.tntm-trans-card-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}
.tntm-trans-card-item .material-symbols-outlined {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Translation full-width image with overlay */
.tntm-trans-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 20px 60px rgba(0,26,51,0.2);
}
.tntm-trans-image {
    display: block;
    /* no width — renders at natural 512px, dark bg fills the rest */
    height: auto;
    opacity: 0.6;
    filter: grayscale(1);
    transition: filter 0.7s, opacity 0.7s;
}
.tntm-trans-image-wrap:hover .tntm-trans-image {
    filter: grayscale(0);
    opacity: 0.7;
}
.tntm-trans-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.tntm-trans-image-icon {
    padding: 3rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tntm-trans-image-icon .material-symbols-outlined {
    font-size: 3.75rem;
    color: #fff;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .tntm-hero-grid      { grid-template-columns: 1fr; gap: 48px; }
    .tntm-hero-title     { font-size: 2.75rem; }
    .tntm-feat-2col      { gap: 48px; }
    .tntm-trans-top      { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .tntm-hero           { padding: 64px 0; }
    .tntm-hero-title     { font-size: 2.25rem; }
    .tntm-hero-lead      { font-size: 1rem; }
    .tntm-sect           { padding: 64px 0; }
    .tntm-h2             { font-size: 2rem; }
    .tntm-card-grid      { grid-template-columns: 1fr; }
    .tntm-feat-2col      { grid-template-columns: 1fr; gap: 32px; }
    .tntm-feat-rev > *   { order: 0 !important; }
    .tntm-org-header     { padding: 64px 0; }
    .tntm-h2-light       { white-space: normal; }
    .tntm-trans-cards    { grid-template-columns: 1fr; }
    .tntm-trans-image    { width: 100%; height: 280px; object-fit: cover; }
    .tntm-sect-header-right { text-align: left; margin-left: 0; }
    .tntm-card-white     { text-align: left; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════════════
   EVENT WORKBENCH PAGE  ·  ew- prefix
═══════════════════════════════════════════════════════════════════════ */

/* ── Section heading (full-width above 2-col) ─────────────────────── */
.ew-sect-heading {
    margin-bottom: 56px;
}
.ew-sect-heading .ew-h2 { margin-bottom: 16px; }
.ew-lead-narrow { max-width: 640px; }

/* ── Layout primitives ─────────────────────────────────────────────── */
.ew-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}
.ew-sect {
    padding: 96px 0;
}
.ew-sect-white    { background: #ffffff; }
.ew-sect-offwhite { background: #f8f6f6; }
.ew-sect-dark     { background: #0f1923; }

.ew-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.ew-2col-rev .ew-col-visual { order: -1; }
.ew-gap-xl       { gap: 80px; }
.ew-align-center { align-items: center; }
.ew-align-start  { align-items: flex-start; }
.ew-centered     { text-align: center; }
.ew-centered .ew-lead { max-width: 640px; margin-left: auto; margin-right: auto; }

/* ── Typography ────────────────────────────────────────────────────── */
.ew-tag {
    display: inline-block;
    background: #c6102e;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: 8px;
    margin-bottom: 16px;
}
.ew-tag-light { background: rgba(198,16,46,0.2); color: #ff6888; }
.ew-h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #001a33;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}
.ew-h2-light { color: #f8fafc; }
.ew-lead {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.75;
    margin: 0 0 32px;
}
.ew-lead-light { color: #94a3b8; }

/* ── Hero ──────────────────────────────────────────────────────────── */
.ew-hero {
    background: #f8f6f6;
    padding: 96px 0 80px;
}
.ew-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.ew-hero-copy {}
.ew-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #001a33;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 24px;
}
.ew-hero-title .accent { color: #c6102e; }
.ew-hero-lead {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.75;
    max-width: 30rem;
    margin: 0 0 32px;
}

/* ── Browser wireframe mockup ──────────────────────────────────────── */
.ew-browser-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.ew-browser-outer {
    background: #f0f4f8;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 24px 64px rgba(0,26,51,0.15);
    width: 100%;
    max-width: 460px;
}
.ew-browser {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #d1d5db;
}
.ew-browser-bar {
    background: #f1f5f9;
    padding: 10px 16px;
    display: flex;
    gap: 6px;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}
.ew-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.ew-dot-r { background: #fc8181; }
.ew-dot-y { background: #f6ad55; }
.ew-dot-g { background: #68d391; }
.ew-browser-body {
    padding: 16px;
    background: #ffffff;
}
/* New simplified browser body (no sidebar) */
.ew-browser-body-aspect {
    padding: 24px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ew-wf-header-slim {
    height: 24px;
    width: 33%;
    background: #e8ecf0;
    border-radius: 6px;
}
.ew-wf-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.ew-wf-table-lg {
    flex: 1;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* ── Accordion ─────────────────────────────────────────────────────── */
.ew-acc-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}
.ew-acc-item {
    border-bottom: 1px solid #e2e8f0;
    cursor: pointer;
    transition: background 0.15s;
}
.ew-acc-item:last-child { border-bottom: none; }
.ew-acc-item:hover { background: #f8fafc; }
.ew-acc-item.ew-acc-active {
    background: #fff;
    border-left: 4px solid #c6102e;
}
.ew-acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 12px;
}
.ew-acc-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ew-acc-icon {
    font-size: 1.3rem;
    color: #c6102e;
    font-variation-settings: 'FILL' 0, 'wght' 400;
}
.ew-acc-item.ew-acc-active .ew-acc-icon { font-variation-settings: 'FILL' 1, 'wght' 400; }
.ew-acc-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #001a33;
    margin: 0;
}
.ew-acc-chevron {
    font-size: 1.2rem;
    color: #94a3b8;
    transition: transform 0.25s;
    font-variation-settings: 'FILL' 0, 'wght' 300;
}
.ew-acc-item.ew-acc-active .ew-acc-chevron {
    transform: rotate(180deg);
    color: #c6102e;
}
.ew-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.ew-acc-item.ew-acc-active .ew-acc-body {
    max-height: 200px;
}
.ew-acc-desc {
    padding: 0 20px 16px 60px;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* ── Event flow dashboard mockup ───────────────────────────────────── */
.ew-mockup-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,26,51,0.1);
    overflow: hidden;
    border: 1px solid #e8ecf0;
}
.ew-mockup-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #e8ecf0;
    background: #f8fafc;
}
.ew-mock-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: #001a33;
    letter-spacing: 0.02em;
}
.ew-mock-icon-sm {
    font-size: 1.1rem;
    color: #94a3b8;
}
.ew-mockup-rows { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.ew-mock-row {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.15s;
}
.ew-mock-row-active { background: rgba(198,16,46,0.05); }
.ew-mock-time {
    font-size: 0.75rem;
    font-weight: 700;
    color: #001a33;
    font-variant-numeric: tabular-nums;
}
.ew-mock-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
}
.ew-mock-bar-accent { background: #c6102e; }
.ew-mock-label {
    font-size: 0.8rem;
    color: #475569;
    white-space: nowrap;
}
.ew-mockup-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-top: 1px solid #e8ecf0;
    background: #f8fafc;
}
.ew-mock-chip-icon { font-size: 1rem; color: #94a3b8; }
.ew-mock-chip-text { font-size: 0.78rem; color: #64748b; }

/* ── Phone wireframe mockup ────────────────────────────────────────── */
.ew-phone-wrap {
    display: flex;
    justify-content: center;
}
.ew-phone-wrap-center { justify-content: center; }
.ew-phone {
    width: 220px;
    background: #fff;
    border-radius: 36px;
    box-shadow: 0 24px 64px rgba(0,26,51,0.15), 0 0 0 2px #e2e8f0;
    overflow: hidden;
    position: relative;
}
.ew-phone-dark { background: #1e293b; box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 2px #334155; }
.ew-phone-notch {
    width: 64px; height: 12px;
    background: #f1f5f9;
    border-radius: 0 0 12px 12px;
    margin: 0 auto;
}
.ew-phone-dark .ew-phone-notch { background: #0f172a; }
.ew-phone-screen {
    padding: 8px;
    min-height: 340px;
}
.ew-phone-hero-img {
    height: 100px;
    background: linear-gradient(135deg, #001a33 0%, #c6102e 100%);
    border-radius: 8px;
    margin-bottom: 10px;
}
.ew-phone-content { padding: 0 4px; }
.ew-ph-line {
    height: 7px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 6px;
    width: 100%;
}
.ew-ph-line-title { height: 12px; width: 80%; }
.ew-ph-line-sub   { width: 60%; }
.ew-ph-line-short { width: 40%; }
.ew-ph-line-3q    { width: 75%; }
.ew-ph-pill {
    height: 24px;
    width: 80px;
    background: #c6102e;
    border-radius: 12px;
    margin: 8px 0;
}
.ew-ph-section { margin-top: 10px; padding-top: 10px; border-top: 1px solid #e2e8f0; }
.ew-phone-home {
    width: 48px; height: 4px;
    background: #e2e8f0;
    border-radius: 4px;
    margin: 8px auto;
}
.ew-phone-dark .ew-phone-home { background: #334155; }

/* ── Website section phone + floating preview card ──────────────────── */
.ew-phone-wrap-site {
    position: relative;
    justify-content: flex-start;
}
.ew-phone-site {
    background: #001a33;
    box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 0 0 7px #0a1422;
    position: relative;
    z-index: 2;
}
.ew-phone-screen-site {
    background: #fff;
    padding: 16px;
    min-height: 350px;
    border-radius: 0;
}
.ew-ph-badge {
    height: 20px;
    width: 64px;
    background: rgba(198,16,46,0.15);
    border-radius: 4px;
    margin-bottom: 14px;
}
.ew-ph-img-block {
    height: 120px;
    background: #f1f5f9;
    border-radius: 8px;
    margin-bottom: 14px;
}
.ew-phone-home-dark { background: #334155; }
.ew-web-preview-card {
    position: absolute;
    right: 8px;
    top: 64px;
    width: 220px;
    height: 130px;
    background: #f1f5f9;
    border-radius: 12px;
    border: 4px solid #fff;
    box-shadow: 0 8px 32px rgba(0,26,51,0.14);
    z-index: 1;
}
.ew-web-preview-panels {
    padding: 14px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.ew-web-panel           { border-radius: 6px; height: 80px; }
.ew-web-panel-navy      { width: 34%; background: rgba(0,26,51,0.12); }
.ew-web-panel-red       { flex: 1; background: rgba(198,16,46,0.1); }

/* ── Checklist ─────────────────────────────────────────────────────── */
.ew-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ew-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
}
.ew-check-icon {
    font-size: 1.2rem;
    color: #c6102e;
    font-variation-settings: 'FILL' 1;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Tabs ──────────────────────────────────────────────────────────── */
.ew-tabs {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin: 0 0 32px;
    flex-wrap: wrap;
}
.ew-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 0.875rem;
    font-weight: 600;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
    font-family: inherit;
}
.ew-tab:hover { color: #475569; }
.ew-tab.ew-tab-active { color: #c6102e; border-bottom-color: #c6102e; }
.ew-tab-light         { color: #64748b; }
.ew-tab-light.ew-tab-active { color: #c6102e; }
.ew-tab-icon { font-size: 1.1rem; }
.ew-tab-panel {
    border-radius: 16px;
    overflow: hidden;
}
.ew-tab-panel-dark { background: #1e293b; }
.ew-tab-panel-light {
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,26,51,0.08);
    border: 1px solid #e2e8f0;
}

/* ── AV dark section ───────────────────────────────────────────────── */
.ew-av-stage {
    background: linear-gradient(135deg, #001a33 0%, #0a0a14 100%);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.ew-av-video {
    background: #0a0f1a;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.ew-av-video-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.ew-av-icon {
    font-size: 5rem;
    color: rgba(198,16,46,0.5);
    font-variation-settings: 'FILL' 0, 'wght' 200;
}
.ew-av-icon-pulse {
    animation: ew-pulse 2s ease-in-out infinite;
}
.ew-av-label {
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
}
.ew-av-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(198,16,46,0.08);
    border-top: 1px solid rgba(198,16,46,0.15);
}
.ew-av-ctrl-group {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #94a3b8;
}
.ew-av-ctrl-group .material-symbols-outlined { font-size: 1.5rem; cursor: pointer; }
.ew-ctrl-play {
    font-size: 2rem !important;
    color: #c6102e !important;
    font-variation-settings: 'FILL' 1;
}
.ew-av-timer {
    font-size: 0.8rem;
    font-variant-numeric: tabular-nums;
    font-family: monospace;
    color: #c6102e;
}

/* ── Icon grid (2-col horizontal pills, matches Stitch) ────────────── */
.ew-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}
.ew-icon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #f8f6f6;
    border-radius: 8px;
    border: 1px solid #e8ecf0;
    box-shadow: 0 1px 4px rgba(0,26,51,0.05);
    transition: box-shadow 0.15s, transform 0.15s;
}
.ew-icon-item:hover {
    box-shadow: 0 4px 16px rgba(0,26,51,0.08);
    transform: translateY(-1px);
}
.ew-icon-item-icon {
    font-size: 1.35rem;
    color: #c6102e;
    font-variation-settings: 'FILL' 0, 'wght' 300;
    flex-shrink: 0;
}
.ew-icon-item-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #001a33;
    line-height: 1.3;
}

/* ── Audience engagement phone app styling ─────────────────────────── */
.ew-app-header {
    background: linear-gradient(135deg, #001a33 0%, #1e3a5f 100%);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
}
.ew-app-tag {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ff6888;
    margin-bottom: 4px;
}
.ew-app-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.ew-app-body { padding: 4px; }
.ew-app-poll { background: #f8fafc; border-radius: 8px; padding: 10px; }
.ew-app-poll-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #c6102e;
    margin-bottom: 6px;
}
.ew-app-poll-q {
    font-size: 0.72rem;
    font-weight: 600;
    color: #001a33;
    margin-bottom: 8px;
    line-height: 1.4;
}
.ew-app-poll-bar {
    font-size: 0.68rem;
    color: #64748b;
    background: #e2e8f0;
    border-radius: 4px;
    padding: 4px 8px;
    margin-bottom: 4px;
}
.ew-app-poll-bar-fill { background: rgba(198,16,46,0.1); color: #c6102e; font-weight: 600; }
.ew-app-nav {
    display: flex;
    justify-content: space-around;
    padding: 8px;
    border-top: 1px solid #f1f5f9;
    margin-top: 8px;
}
.ew-app-nav .material-symbols-outlined { font-size: 1.1rem; color: #94a3b8; }

/* ── Translation preview ───────────────────────────────────────────── */
.ew-trans-preview {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ew-trans-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}
.ew-trans-src { display: flex; flex-direction: column; gap: 10px; }
.ew-trans-lang-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ew-trans-lang-icon { font-size: 1.1rem; color: #64748b; }
.ew-trans-arrow { font-size: 1rem; color: #94a3b8; }
.ew-trans-lang-name { font-size: 0.8rem; font-weight: 600; color: #334155; }
.ew-trans-bubble {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.65;
    color: #334155;
}
.ew-trans-bubble-light { background: #f1f5f9; border: 1px solid #e2e8f0; }
.ew-trans-bubble-dark  { background: #001a33; color: #e2e8f0; }
.ew-trans-overlay {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
}
.ew-trans-overlay-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #c6102e;
    margin-bottom: 10px;
}
.ew-trans-overlay-lines { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.ew-trans-line {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
}
.ew-trans-line-full  { width: 100%; }
.ew-trans-line-3q    { width: 75%; }
.ew-trans-line-half  { width: 50%; }
.ew-trans-overlay-caption {
    font-size: 0.72rem;
    color: #94a3b8;
}
.ew-trans-status {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
}
.ew-trans-status-icon { font-size: 1.2rem; color: #16a34a; }
.ew-trans-status-text { font-size: 0.85rem; font-weight: 600; color: #166534; flex: 1; }
.ew-trans-pulse {
    width: 8px; height: 8px;
    background: #16a34a;
    border-radius: 50%;
    animation: ew-pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes ew-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}
.ew-trans-latency {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #064e3b;
    white-space: nowrap;
}

/* ── Livestream video switcher mockup ──────────────────────────────── */
.ew-stream-outer {
    background: #1f2937;
    padding: 8px;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.ew-stream-wrap {
    background: #001a33;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    position: relative;
}
.ew-stream-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #c6102e;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 1;
}
.ew-stream-body {
    flex: 1;
    padding: 40px 12px 12px;
}
.ew-stream-cams {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    height: 100%;
}
.ew-stream-cam {
    background: #0d1b2a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: border-color 0.15s;
}
.ew-stream-cam .material-symbols-outlined { font-size: 1.3rem; color: rgba(255,255,255,0.15); }
.ew-stream-cam-active {
    border-color: rgba(198,16,46,0.5);
}
.ew-stream-cam-active .material-symbols-outlined { color: rgba(255,255,255,0.2); }
.ew-stream-preview-strip {
    display: flex;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.05);
    height: 52px;
}
.ew-stream-preview {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
}
.ew-stream-preview:first-child { flex: 2; }
.ew-stream-preview-active {
    background: rgba(198,16,46,0.25);
}

/* ── Analytics mockup ──────────────────────────────────────────────── */
.ew-analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}
.ew-stat-card {
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}
.ew-stat-card-light { background: #fff; }
.ew-stat-card-dark  { background: #001a33; }
.ew-stat-card-wide  { grid-column: span 2; }
.ew-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin: 0 0 6px;
}
.ew-stat-card-dark .ew-stat-label { color: #94a3b8; }
.ew-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #001a33;
    letter-spacing: -0.03em;
    margin: 0 0 10px;
}
.ew-stat-value-light { color: #fff; }
.ew-stat-bar {
    height: 6px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}
.ew-stat-bar-dark { background: #1e3a5f; }
.ew-stat-bar-fill {
    height: 100%;
    background: #c6102e;
    border-radius: 4px;
}
.ew-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
    margin-top: 12px;
}
.ew-bar { flex: 1; border-radius: 4px 4px 0 0; min-height: 8px; }
.ew-bar-1 { background: rgba(198,16,46,0.10); }
.ew-bar-2 { background: rgba(198,16,46,0.30); }
.ew-bar-3 { background: rgba(198,16,46,0.60); }
.ew-bar-4 { background: #c6102e; }
.ew-bar-5 { background: #001a33; }

/* ── Section heading full-width above 2-col ───────────────────────── */
.ew-sect-heading {
    margin-bottom: 56px;
}
.ew-sect-heading .ew-h2 { margin-bottom: 16px; }
.ew-lead-narrow { max-width: 640px; }

/* ── Checklist with icon badges (Livestream) ───────────────────────── */
.ew-checklist-icons { gap: 20px; }
.ew-checklist-icons .ew-check-item {
    gap: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #001a33;
}
.ew-checklist-icons .ew-check-icon {
    width: 40px;
    height: 40px;
    background: rgba(198,16,46,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0;
}
@media (max-width: 1200px) {
    .ew-inner      { padding: 0 60px; }
    .ew-hero-title { font-size: 2.75rem; }
    .ew-2col       { gap: 48px; }
    .ew-trans-pair { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 1024px) {
    .ew-inner      { padding: 0 40px; }
    .ew-hero-grid  { grid-template-columns: 1fr; gap: 48px; }
    .ew-hero-title { font-size: 2.5rem; }
    .ew-2col       { gap: 40px; }
}
@media (max-width: 768px) {
    .ew-inner      { padding: 0 20px; }
    .ew-hero       { padding: 64px 0; }
    .ew-sect       { padding: 64px 0; }
    .ew-hero-title { font-size: 2.25rem; }
    .ew-hero-lead  { font-size: 1rem; }
    .ew-h2         { font-size: 2rem; }
    .ew-h2-light   { white-space: normal; }
    .ew-2col       { grid-template-columns: 1fr; gap: 32px; }
    .ew-2col-rev .ew-col-visual { order: 0; }
    .ew-icon-grid  { grid-template-columns: repeat(2, 1fr); }
    .ew-analytics-grid { grid-template-columns: 1fr; }
    .ew-stat-card-wide { grid-column: span 1; }
    .ew-stream-cams { grid-template-columns: repeat(2, 1fr); }
    .ew-trans-pair { grid-template-columns: 1fr; }
    .ew-tabs       { gap: 2px; }
    .ew-tab        { padding: 8px 12px; font-size: 0.8rem; }
}