/* ===== Hero Section (Common) ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 7, 10, 0.7) 0%, rgba(5, 7, 10, 0.4) 50%, rgba(5, 7, 10, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    z-index: 1;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

/* Gradient Hero (no video) */
.hero-gradient {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0, 255, 204, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(5, 7, 10, 1) 0%, transparent 70%);
    z-index: 0;
}

/* ===== Services Section (Common) ===== */
.services-section {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 255, 204, 0.3);
}

.icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon {
    font-size: 3rem;
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary);
    filter: blur(30px);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover .icon-glow {
    opacity: 0.4;
    transform: scale(1.2);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

/* ===== Business Overview Cards (Home) ===== */
.business-overview {
    padding: 8rem 0;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.business-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-main);
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-text);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.business-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 255, 204, 0.4);
}

.business-card:hover::before {
    opacity: 1;
}

.business-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.business-card:hover .business-icon {
    transform: scale(1.15);
}

.business-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.business-card .desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.business-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
}

.business-card .card-link .arrow {
    transition: transform 0.3s ease;
}

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

/* ===== Company Intro (Home) ===== */
.company-intro {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(5, 7, 10, 0) 0%, rgba(59, 130, 246, 0.03) 50%, rgba(5, 7, 10, 0) 100%);
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tech-tag {
    padding: 0.4rem 1rem;
    background: rgba(0, 255, 204, 0.08);
    border: 1px solid rgba(0, 255, 204, 0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

.intro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-graphic {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.1) 0%, rgba(59, 130, 246, 0.05) 50%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(0, 255, 204, 0.15));
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(5, 7, 10, 0) 0%, rgba(59, 130, 246, 0.05) 50%, rgba(5, 7, 10, 0) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.2));
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.pricing-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-features li::before {
    content: '✦';
    color: var(--primary);
    font-size: 0.8rem;
}

/* ===== Project Section (VR) ===== */
.project-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.project-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.12;
    z-index: 0;
    filter: grayscale(80%) contrast(120%);
}

.project-section .container {
    position: relative;
    z-index: 1;
}

.project-header {
    text-align: left;
    margin-bottom: 0;
}

.project-top-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.project-video-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.project-main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-item {
    padding: 2rem;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(30, 40, 55, 0.8);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.05), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(0, 255, 204, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
}

.feature-highlight .highlight-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.feature-highlight p {
    max-width: 800px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.feature-highlight strong {
    color: var(--primary);
}

/* ===== Ecosystem / U-Maker Section ===== */
.ecosystem-section {
    padding: 8rem 0;
}

.ecosystem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.eco-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.eco-list {
    list-style: none;
    margin-bottom: 3rem;
}

.eco-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.check {
    color: var(--primary);
    font-weight: bold;
}

.other-software {
    padding: 2rem;
    margin-top: 1.5rem;
}

.other-software h4 {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.software-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.software-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

.software-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

/* ===== Media / Carousel ===== */
.media-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
    padding: 0.75rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.umaker-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

.slide-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 25, 35, 0.6), rgba(10, 15, 20, 0.8));
    padding: 0 !important;
}

.partner-logo {
    height: 85%;
    width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
    transition: var(--transition);
}

.partner-logo:hover {
    transform: scale(1.05);
}

.carousel-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    z-index: 10;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 50px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: 4px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    font-size: 1.2rem;
}

.carousel-nav:hover {
    background: var(--primary);
    color: black;
    border-color: var(--primary);
}

.carousel-nav.prev {
    left: 1rem;
}

.carousel-nav.next {
    right: 1rem;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 6rem 0 8rem;
}

.contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(20, 25, 35, 0.8), rgba(10, 15, 20, 0.9));
    border-top: 2px solid var(--primary);
}

.contact-text {
    max-width: 500px;
}

.contact-text p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.highlight-text {
    font-weight: bold;
    color: var(--text-main) !important;
}

.qr-wrapper {
    text-align: center;
}

.qr-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    padding: 10px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.qr-code {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qr-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    animation: scan 2s linear infinite;
}

.qr-hint {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.contact-email-link {
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.contact-email-link a {
    color: inherit;
    text-decoration: none;
}

/* ===== AI Page: Case Studies ===== */
.case-section {
    padding: 8rem 0;
}

.case-header {
    text-align: center;
    margin-bottom: 5rem;
}

.case-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.case-item.reverse {
    direction: rtl;
}

.case-item.reverse .case-info {
    direction: ltr;
}

.case-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.case-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.case-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(5, 7, 10, 0.6) 100%);
    pointer-events: none;
}

.case-info {
    padding: 1rem 0;
}

.case-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.case-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 255, 204, 0.08);
    border: 1px solid rgba(0, 255, 204, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

.case-info h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.case-info .case-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.case-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.case-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.case-features li::before {
    content: '▸';
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.15em;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.case-link:hover {
    color: var(--primary);
    gap: 0.75rem;
}

/* ===== 3D Page: Service Detail Cards ===== */
.td-service-section {
    padding: 4rem 0 8rem;
}

.td-service-card {
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.td-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-text);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.td-service-card:hover::before {
    opacity: 1;
}

.td-service-card:hover {
    border-color: rgba(0, 255, 204, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.td-service-card .td-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.td-service-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.td-service-card .td-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.td-points {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.td-points li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.td-points li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* ===== About Page ===== */
.about-section {
    padding: 8rem 0;
}

.about-mission {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.about-mission p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.9;
}

.about-mission .highlight {
    color: var(--primary);
    font-weight: 600;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.capability-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.capability-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 204, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.capability-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.capability-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.capability-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.product-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.product-card {
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-main);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 204, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-card .product-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-card h5 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.product-card .product-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ===== CTA Section (Common) ===== */
.cta-section {
    padding: 4rem 0 8rem;
    text-align: center;
}

.cta-box {
    padding: 4rem;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===== Page Separator ===== */
.page-divider {
    border: none;
    border-top: 1px solid var(--glass-border);
    margin: 0;
}

/* ===== Responsive: Page-specific ===== */
@media (max-width: 992px) {
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .intro-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .tech-tags {
        justify-content: center;
    }
    .intro-graphic {
        width: 200px;
        height: 200px;
        font-size: 5rem;
    }
    .case-item,
    .case-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .case-item.reverse {
        direction: ltr;
    }
    .td-points {
        grid-template-columns: 1fr;
    }
    .capability-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .business-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .case-info h3 {
        font-size: 1.5rem;
    }
    .td-service-card {
        padding: 2.5rem 1.5rem;
    }
    .capability-grid {
        grid-template-columns: 1fr;
    }
    .product-matrix {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-box {
        padding: 2.5rem 1.5rem;
    }
    .carousel-nav {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}
