/* =====================================================
   AISLING KOREA - Home Page Styles
   Sophisticated Biotech Editorial Design
   ===================================================== */

/* =====================================================
   Home Hero Section - Premium Cinematic with Particles.js
   ===================================================== */
.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #061410 0%, #0A1F18 50%, #0D2920 100%);
}

/* Particles.js Container - Interactive Background */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent;
}

.home-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.home-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: saturate(0.5) brightness(0.6);
}

/* Cinematic Overlay */
.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(27, 77, 62, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(13, 148, 136, 0.1) 0%, transparent 40%),
        linear-gradient(180deg, rgba(6, 20, 16, 0.3) 0%, transparent 30%, rgba(6, 20, 16, 0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Refined Grid Pattern */
.home-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 3;
}

/* Legacy Particle Effects - Hidden when using particles.js */
.home-hero-particles {
    display: none;
}

.particle {
    display: none;
}

/* Container Centered */
.home-hero>.container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* Hero Content - Perfect Center */
.home-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Editorial Badge */
.home-hero-badge {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: var(--s-text-white);
    letter-spacing: 0.6em;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Display Title */
.home-hero-title {
    font-size: clamp(3.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--s-text-white);
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.home-hero-title .highlight {
    font-weight: 600;
    color: var(--s-color-accent-light);
}

.home-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto;
    letter-spacing: -0.01em;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.home-hero-cta {
    /* display: flex; */
    display: none !important;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.home-hero-cta .btn {
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-hero-cta .btn-primary {
    background: var(--s-color-accent);
    color: var(--s-bg-dark);
    border: 2px solid var(--s-color-accent);
}

.home-hero-cta .btn-primary:hover {
    background: var(--s-color-accent-light);
    border-color: var(--s-color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
}

.home-hero-cta .btn-secondary {
    background: transparent;
    color: var(--s-text-white);
    border: 2px solid var(--s-white-alpha-30);
}

.home-hero-cta .btn-secondary:hover {
    background: var(--s-white-alpha-05);
    border-color: var(--s-white-alpha-60);
    transform: translateY(-2px);
}

/* Scroll Indicator - Refined */
.home-hero-scroll {
    display: none !important;
}

/* Swiper Pagination Dots */
.home-hero-pagination {
    bottom: 40px !important;
}

.home-hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ffffff;
    opacity: 0.5;
    margin: 0 8px !important;
    transition: all 0.3s ease;
}

.home-hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.3);
}

/* =====================================================
   Hero Animations
   ===================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   Company Highlights Section
   ===================================================== */
.highlights-section {
    padding: var(--spacing-5xl) 0;
    background: var(--s-bg-white);
    position: relative;
    overflow: hidden;
}

.highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--s-border-color), transparent);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.highlight-item {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--s-radius-lg);
    transition: all var(--s-transition-normal);
}

.highlight-item:hover {
    background: var(--s-bg-light);
}

.highlight-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--s-color-primary-pale);
    border-radius: var(--s-radius-lg);
    color: var(--s-color-primary);
}

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

.highlight-number {
    font-size: var(--s-font-size-4xl);
    font-weight: var(--s-font-weight-bold);
    color: var(--s-color-primary-dark);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.highlight-label {
    font-size: var(--s-font-size-sm);
    color: var(--s-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =====================================================
   Technology Preview Section
   ===================================================== */
.tech-preview-section {
    padding: var(--spacing-5xl) 0;
    background: var(--s-bg-section);
}

.tech-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.tech-preview-content {
    padding-right: var(--spacing-2xl);
}

.tech-preview-label {
    display: inline-block;
    font-size: var(--s-font-size-sm);
    font-weight: var(--s-font-weight-semibold);
    color: var(--s-color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
}

.tech-preview-title {
    font-size: var(--s-font-size-3xl);
    font-weight: var(--s-font-weight-bold);
    color: var(--s-text-primary);
    margin-bottom: var(--spacing-lg);
    line-height: var(--s-line-height-tight);
}

.tech-preview-text {
    font-size: var(--s-font-size-md);
    color: var(--s-text-secondary);
    line-height: var(--s-line-height-relaxed);
    margin-bottom: var(--spacing-xl);
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.tech-feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--s-color-primary);
    border-radius: var(--s-radius-full);
    color: var(--s-text-white);
}

.tech-feature-icon svg {
    width: 14px;
    height: 14px;
}

.tech-feature-text {
    font-size: var(--s-font-size-base);
    color: var(--s-text-secondary);
}

.tech-preview-visual {
    position: relative;
}

.tech-preview-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--s-radius-xl);
    overflow: hidden;
    box-shadow: var(--s-shadow-xl);
}

.tech-preview-image .img-placeholder {
    width: 100%;
    height: 100%;
}

/* =====================================================
   Latest News Section
   ===================================================== */
.news-section {
    padding: 140px 0 160px;
    background: #f5f5f5;
}

.news-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    text-align: center;
}

.news-header-content {
    max-width: 600px;
}

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

.news-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: none;
    transition: all var(--s-transition-normal);
}

.news-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.news-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #000000;
}

.news-card-image img,
.news-card-image .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--s-transition-slow);
}

.news-card:hover .news-card-image img,
.news-card:hover .news-card-image .img-placeholder {
    transform: scale(1.05);
}

.news-card-body {
    padding: 32px 32px 40px;
}

.news-card-date {
    font-size: 13px;
    color: #999999;
    display: block;
    margin-top: 16px;
}

.news-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
    margin-top: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--spacing-3xl);
}

.news-header-content {
    max-width: 500px;
}

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

.news-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: none;
    transition: all var(--s-transition-normal);
}

.news-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.news-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #000000;
}

.news-card-image img,
.news-card-image .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--s-transition-slow);
}

.news-card:hover .news-card-image img,
.news-card:hover .news-card-image .img-placeholder {
    transform: scale(1.05);
}

.news-card-body {
    padding: 24px 24px 32px;
}

.news-card-date {
    font-size: 14px;
    color: #999999;
    display: block;
}

.news-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    margin-top: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-title a {
    color: inherit;
    text-decoration: none;
}

.news-card-title a:hover {
    color: var(--s-color-primary);
}

.news-card-excerpt {
    font-size: var(--s-font-size-sm);
    color: var(--s-text-secondary);
    line-height: var(--s-line-height-17);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =====================================================
   Partners Scrolling Section
   ===================================================== */
.home-partners-scroll {
    padding: 140px 0 160px;
    overflow: hidden;
    background: #ffffff;
}


.home-partners-scroll-track {
    overflow: hidden;
    width: 100%;
}

.home-partners-scroll-list {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: partners-scroll 40s linear infinite;
}

.home-partners-scroll-item {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    background: #f4f4f4;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.home-partners-scroll-item:hover {
    transform: translateY(-4px);
}

.home-partners-scroll-logo {
    max-width: 80%;
    max-height: 60%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.home-partners-scroll-item:hover .home-partners-scroll-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.home-partners-scroll-name {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    text-align: center;
    padding: 0 12px;
    word-break: keep-all;
}

@keyframes partners-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}

/* =====================================================
   Technology Platform Section V2
   ===================================================== */
/* =====================================================
   Catchphrase Section (2-block layout)
   ===================================================== */
.home-catchphrase {
    padding: 140px 0 160px;
    background: var(--s-bg-white);
    position: relative;
}

.home-catchphrase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.home-catchphrase .section-title {
    font-size: 58px;
    font-weight: 700;
    color: #222222;
    line-height: 1.1;
    letter-spacing: -0.04em;
    white-space: pre-line;
}

.home-catchphrase-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 140px;
}

.home-catchphrase .section-desc {
    font-size: 1.15rem;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: none;
    white-space: pre-line;
}

.home-catchphrase-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 28px;
    font-weight: 600;
    color: #222222;
    text-decoration: none;
    letter-spacing: -0.05em;
    transition: color 0.3s ease;
    align-self: flex-end;
}

.home-catchphrase-btn:hover {
    color: #085a3c;
}

.home-catchphrase-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #085a3c;
    color: white;
    transition: background 0.3s ease, transform 0.3s ease;
}

.home-catchphrase-btn-icon svg {
    width: 28px;
    height: 28px;
}

.home-catchphrase-btn:hover .home-catchphrase-btn-icon {
    background: #06402b;
    transform: translateX(8px);
}

/* =====================================================
   Brand Mid Image Section (full-width image)
   ===================================================== */
.home-brand-mid-image {
    width: 100%;
    line-height: 0;
    aspect-ratio: 1710 / 540;
    overflow: hidden;
}

.home-brand-mid-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* =====================================================
   Brand CTA Section (full-width bg image + white text) - legacy
   ===================================================== */
.home-brand-cta {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
}

.home-brand-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.home-brand-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-brand-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.home-brand-cta .container {
    position: relative;
    z-index: 1;
}

.home-brand-cta-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.home-brand-cta-title {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.home-brand-cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin-bottom: 48px;
}

.home-brand-cta-btn {
    display: inline-flex;
    align-items: center;
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.home-brand-cta-btn:hover {
    color: rgba(255, 255, 255, 0.7);
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

/* =====================================================
   Our Business Features Section
   ===================================================== */
/* =====================================================
   Our Brand Section
   ===================================================== */
.home-brand-section {
    padding: 120px 0 140px;
    background: #ffffff;
}

.home-brand-section .section-title {
    font-size: 48px;
    font-weight: 700;
    color: #222222;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.home-brand-section .section-desc {
    font-size: 1.15rem;
    color: #888888;
    margin-bottom: 70px;
}

.home-brand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.home-brand-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.home-brand-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1.1 / 1;
    overflow: hidden;
    border-radius: 24px;
    background: #f5f5f5;
}

.home-brand-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-brand-card:hover .home-brand-card-img {
    transform: scale(1.05);
}

.home-brand-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    pointer-events: none;
}

.home-brand-card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 40px;
    z-index: 1;
}

.home-brand-card-desc {
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    line-height: 1.5;
}

.home-brand-card-name {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
}


/* =====================================================
   Responsive Styles
   ===================================================== */
@media (max-width: 1199px) {
    .tech-preview-grid {
        gap: var(--spacing-2xl);
    }

    .tech-preview-content {
        padding-right: var(--spacing-lg);
    }
}

@media (max-width: 991px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-preview-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .tech-preview-content {
        padding-right: 0;
        order: 2;
    }

    .tech-preview-visual {
        order: 1;
    }

    .home-catchphrase {
        padding: 80px 0 100px;
    }

    .home-catchphrase-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .home-catchphrase-right {
        padding-top: 0;
    }

    .home-catchphrase .section-title {
        font-size: 38px;
    }

    .home-catchphrase-btn {
        align-self: flex-end;
    }

    .home-brand-cta {
        padding: 100px 0;
    }

    .home-brand-cta-title {
        font-size: 28px;
    }

    .home-brand-section {
        padding: 80px 0 100px;
    }

    .home-brand-grid {
        gap: 24px;
    }




    .pipeline-tabs {
        gap: 5px;
        flex-wrap: nowrap;
    }

    .pipeline-tab {
        flex: 1;
        padding: var(--spacing-sm) var(--spacing-xs);
        font-size: var(--s-font-size-sm);
    }

    .pipeline-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

    .news-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .news-header {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 767px) {
    .home-hero {
        min-height: 100vh;
        padding: var(--header-height-mobile) var(--container-padding-mobile) var(--spacing-5xl);
    }

    .home-hero-content {
        padding: var(--spacing-md);
    }

    .home-hero-badge {
        font-size: var(--s-font-size-xs);
        padding: var(--spacing-xs) var(--spacing-md);
    }

    .home-hero-title {
        font-size: var(--s-font-size-2xl);
    }

    .home-hero-subtitle {
        font-size: var(--s-font-size-base);
    }

    .home-hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .home-hero-cta .btn {
        width: 100%;
    }

    .home-hero-scroll {
        display: none;
    }

    .highlights-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }

    .home-catchphrase {
        padding: 90px 0;
    }

    .home-catchphrase-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-catchphrase .section-title {
        font-size: 38px;
        white-space: normal;
    }

    .home-catchphrase .section-desc {
        font-size: 15px;
        margin-bottom: 32px;
        white-space: normal;
    }

    .home-catchphrase-btn {
        align-self: flex-end;
    }

    .home-brand-cta {
        padding: 80px 0;
    }

    .home-brand-cta-title {
        font-size: 24px;
    }

    .home-brand-cta-desc {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .home-brand-section {
        padding: 90px 0;
    }

    .home-brand-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .home-marquee {
        padding: 10px 0 !important;
    }

    .home-marquee-content span {
        font-size: 14px !important;
        padding: 0 20px !important;
    }

    .home-marquee-content span.home-marquee-dot {
        padding: 0 !important;
    }

    .home-catchphrase-btn {
        font-size: 24px;
    }

    .home-catchphrase-btn-icon {
        width: 45px;
        height: 45px;
    }

    .home-brand-section .section-title {
        font-size: 32px;
    }

    .home-brand-section .section-desc {
        font-size: 16px;
        line-height: 1.4;
    }

    .home-brand-card-desc {
        font-size: 14px;
    }

    .home-brand-mid-image {
        aspect-ratio: 1710 / 900;
    }

    .home-brand-card-text {
        padding: 20px 24px;
    }

    .home-brand-card-name {
        font-size: 28px;
    }


    .pipeline-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pipeline-card {
        min-height: auto;
    }

    .highlight-item {
        padding: var(--spacing-md);
    }

    .highlight-icon {
        width: 48px;
        height: 48px;
    }

    .highlight-icon svg {
        width: 24px;
        height: 24px;
    }

    .highlight-number {
        font-size: var(--s-font-size-2xl);
    }

    .highlight-label {
        font-size: var(--s-font-size-xs);
    }

    .tech-preview-title {
        font-size: var(--s-font-size-2xl);
    }

    .home-partners-scroll {
        padding: 0px 0 90px;
    }

    .news-section {
        padding: 90px 0;
    }

    .news-cards {
        gap: 15px;
    }

    .news-card-title {
        font-size: 20px;
    }

    .news-card-body {
        padding: 22px 15px 22px;
    }


    .home-partners-scroll-item {
        width: 110px;
        height: 110px;
    }

    .cta-title {
        font-size: var(--s-font-size-2xl);
    }

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

    .cta-buttons .btn {
        width: 100%;
    }
}

/* =====================================================
   Marquee Ticker Band
   ===================================================== */
.home-marquee {
    background-color: #085a3c;
    overflow: hidden;
    padding: 13px 0;
    white-space: nowrap;
}

.home-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.home-marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.home-marquee-content span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0 40px;
}

.home-marquee-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
    padding: 0 !important;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}