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

:root {
    --gold: #A08A57;
    --gold-light: #C4B088;
    --dark: #2C3D57;
    --dark-light: #3d5070;
    --light-bg: #f5f7fa;
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: #fff;
    overflow-x: hidden;
}

/* Gradient Title */
.gradient-title {
    background: linear-gradient(135deg, #ffffff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   SECTION 1 - VIDEO BACKGROUND
======================================== */
.section-one {
    position: relative;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(44, 61, 87, 0.4) 0%,
        rgba(44, 61, 87, 0.5) 50%,
        rgba(44, 61, 87, 0.7) 100%
    );
}

.video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Subsections inside Section 1 */
.subsection {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 60px 20px;
    position: relative;
}

/* Hero */
.hero-text {
    text-align: center;
}

.hero-logo {
    width: 380px;
    height: auto;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 700;
    letter-spacing: 0.3em;
    line-height: 1;
}

.hero-text .subtitle {
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 1em;
    margin-top: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tagline */
.tagline-text {
    text-align: center;
}

.tagline-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.2;
}

.tagline-text h2 span {
    display: block;
}

/* Core Sectors Cards */
.core-sectors-subsection {
    min-height: auto;
    padding: 100px 20px;
}

.sectors-title {
    text-align: center;
    margin-bottom: 40px;
}

.sectors-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.1em;
}

/* Desktop Cards */
.cards-container {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.glass-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.01),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 10px 5px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
}

.glass-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    flex: 1;
    transition: all 0.3s ease;
}

.card-text.collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    padding: 15px 0 0;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.3s;
    align-self: flex-start;
}

.read-more-btn:hover {
    opacity: 0.7;
}

/* Mobile Slider */
.mobile-slider {
    display: none;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slide {
    min-width: 100%;
    padding: 0 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding-bottom: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--gold);
    width: 12px;
    height: 12px;
}

/* CTA */
.cta-subsection {
    text-align: center;
    max-width: 800px;
    padding: 100px 20px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.cta-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-bottom: 50px;
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 45px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark);
    border: none;
    box-shadow: 0 10px 40px rgba(201, 169, 98, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(201, 169, 98, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ========================================
   SECTION 2 - PATTERN BACKGROUND
======================================== */
.section-two {
    position: relative;
    background: var(--dark);
    min-height: 100vh;
    padding: 120px 20px;
}

.section-two::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(201, 169, 98, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(201, 169, 98, 0.03) 0%, transparent 50%),
        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: 100% 100%, 100% 100%, 80px 80px, 80px 80px;
    pointer-events: none;
}

.section-two-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.section-two-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-two-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 25px;
}

.section-two-header p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Expandable Grid */
.sectors-grid {
    display: flex;
    gap: 15px;
    height: 500px;
}

.sector-card {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.01),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 10px 5px rgba(255, 255, 255, 0.2);
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    z-index: 2;
}

.sector-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
    z-index: 2;
}

.sector-card:hover,
.sector-card.active {
    flex: 3;
}

.sector-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.sector-card:hover .sector-card-bg,
.sector-card.active .sector-card-bg {
    opacity: 0.8;
}

.sector-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.sector-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    padding: 30px;
    z-index: 1;
    display: block;
}

.sector-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(201, 169, 98, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 30px;
}

.sector-card:hover .sector-card-icon,
.sector-card.active .sector-card-icon {
    background: var(--gold);
    color: var(--dark);
}

.sector-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 10px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
    height: 2.8em;
    transition: all 0.3s ease;
    position: absolute;
    top: 65px;
    left: 30px;
    right: 30px;
}

.sector-card:hover h3,
.sector-card.active h3 {
    -webkit-line-clamp: unset;
    font-size: 1.4rem;
    height: auto;
}

.sector-card-tagline {
    font-size: 0.95rem;
    color: var(--gold-light);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
    position: absolute;
    top: 110px;
    left: 30px;
    right: 30px;
}

.sector-card:hover .sector-card-tagline,
.sector-card.active .sector-card-tagline {
    opacity: 1;
    transform: translateY(0);
}

.sector-card-details {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease 0.2s;
    position: absolute;
    top: 140px;
    left: 30px;
    right: 30px;
}

.sector-card:hover .sector-card-details,
.sector-card.active .sector-card-details {
    opacity: 1;
    max-height: 200px;
}

/* Responsive */
@media (max-width: 992px) {
    .sectors-grid {
        flex-direction: column;
        height: auto;
    }

    .sector-card {
        height: 100px;
        flex: none !important;
    }

    .sector-card.active {
        height: 350px;
    }

    .sector-card:hover {
        flex: none !important;
    }

    .sector-card h3 {
        font-size: 1rem;
    }

    .sector-card.active h3 {
        font-size: 1.2rem;
    }

    .cards-container {
        display: none;
    }

    .mobile-slider {
        display: block;
    }

    .glass-card {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        letter-spacing: 0.15em;
    }

    .hero-text .subtitle {
        letter-spacing: 0.5em;
    }

    .glass-card {
        padding: 30px 25px;
        min-height: 380px;
    }

    .btn {
        padding: 15px 35px;
        font-size: 0.9rem;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .sector-card-content {
        padding: 20px;
    }

    .sector-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ========================================
   SECTION 3 - IMPACT & STRATEGIC RIGOR
======================================== */
.section-three {
    position: relative;
    background: #fafafa;
    min-height: 100vh;
    padding: 120px 20px;
    color: var(--dark);
}

.section-three-content {
    max-width: 1400px;
    margin: 0 auto;
}

.section-three-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-three-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-three-header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 120px;
}

.metric-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 80px rgba(201, 169, 98, 0.15);
}

.metric-circle {
    width: 140px;
    height: 140px;
    margin: 0 auto 30px;
    position: relative;
}

.metric-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.metric-circle .bg {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 10;
}

.metric-circle .progress {
    fill: none;
    stroke: var(--gold);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 408;
    stroke-dashoffset: 408;
    transition: stroke-dashoffset 1.5s ease-out;
}

.metric-circle.animated .progress {
    stroke-dashoffset: var(--offset);
}

.metric-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
}

.metric-value span {
    font-size: 1.2rem;
    color: var(--gold);
}

.metric-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.metric-card p {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
}

.metric-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

/* Strategic Values */
.strategic-values {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border-radius: 32px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.strategic-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(201, 169, 98, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 98, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.strategic-values-content {
    position: relative;
    z-index: 1;
}

.strategic-header {
    text-align: center;
    margin-bottom: 60px;
}

.strategic-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 15px;
}

.strategic-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.value-item:hover {
    background: rgba(201, 169, 98, 0.1);
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dark);
}

.value-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Section 3 Responsive */
@media (max-width: 992px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .strategic-values {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .metric-circle {
        width: 120px;
        height: 120px;
    }

    .metric-value {
        font-size: 2rem;
    }

    .metric-card {
        padding: 40px 30px;
    }

.value-item {
    padding: 25px 20px;
    min-height: auto;
    height: auto;
}

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ========================================
   SECTION 4 - SUSTAINABLE COMMUNITY
======================================== */
.section-four {
    position: relative;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 120px 20px;
    color: var(--dark);
}

.section-four-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-four-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-four-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-four-header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Community Flow */
.community-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.flow-item {
    background: #fff;
    border-radius: 24px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    transition: all 0.4s ease;
    position: relative;
}

.flow-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(201, 169, 98, 0.15);
}

.flow-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.flow-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.flow-item p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
}

.flow-arrow {
    font-size: 2.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

/* Mobile Hospital Highlight */
.mobile-hospital {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border-radius: 32px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.mobile-hospital::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hospital-visual {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hospital-icon-large {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--dark);
    box-shadow: 0 20px 60px rgba(201, 169, 98, 0.4);
    position: relative;
}

.hospital-icon-large::after {
    content: '';
    position: absolute;
    width: 230px;
    height: 230px;
    border: 2px dashed rgba(201, 169, 98, 0.4);
    border-radius: 50%;
    animation: pulse-ring 2s ease infinite;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.hospital-content {
    flex: 1.5;
    position: relative;
    z-index: 1;
}

.hospital-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 20px;
}

.hospital-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.hospital-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hospital-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hospital-feature:hover {
    background: rgba(201, 169, 98, 0.1);
    border-color: rgba(201, 169, 98, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--dark);
    flex-shrink: 0;
}

.feature-text h5 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Section 4 Responsive */
@media (max-width: 992px) {
    .community-flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .flow-item {
        max-width: 100%;
    }

    .mobile-hospital {
        flex-direction: column;
        padding: 40px 30px;
        gap: 40px;
    }

    .hospital-icon-large {
        width: 150px;
        height: 150px;
        font-size: 3.5rem;
    }

    .hospital-icon-large::after {
        width: 180px;
        height: 180px;
    }
}

/* ========================================
   SECTION 5 - FINAL CTA & FOOTER
======================================== */
.section-five {
    position: relative;
    background: var(--dark);
    color: #fff;
}

/* Final CTA */
.final-cta {
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(201, 169, 98, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 25px;
    line-height: 1.2;
}

.final-cta p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    font-weight: 300;
}

.final-cta .btn-primary {
    padding: 22px 60px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    padding: 60px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(201, 169, 98, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.contact-text span {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3px;
}

.contact-text a,
.contact-text p {
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    margin: 0;
}

.contact-text a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Section 5 Responsive */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-contact {
        flex-direction: column;
        gap: 25px;
    }

    .contact-item {
        justify-content: center;
    }

    .final-cta {
        padding: 80px 20px;
    }
}

/* ========================================
   SECTION 2 - SBIG STORY (Slider)
======================================== */
.sbig-story {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--dark);
}

.story-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.story-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.story-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.story-block.active {
    opacity: 1;
    visibility: visible;
}

.story-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 61, 87, 0.6) 0%, rgba(44, 61, 87, 0.4) 100%);
}

.story-overlay.dark {
    background: linear-gradient(135deg, rgba(44, 61, 87, 0.85) 0%, rgba(44, 61, 87, 0.75) 100%);
}

.story-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 60px 40px;
    text-align: center;
    margin: 0 auto;
}

.story-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(201, 169, 98, 0.2);
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
}

.story-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 35px;
}

.story-text {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Navigation - Right Side Thumbnails */
.story-nav {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.story-nav-item {
    width: 80px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.story-nav-item:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.story-nav-item.active {
    border-color: var(--gold);
    opacity: 1;
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.4);
}

.story-nav-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-nav-item .nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}

.story-nav-item.active .nav-overlay {
    background: rgba(201, 169, 98, 0.2);
}

.story-nav-item .nav-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
}

/* Pagination Dots - Bottom */
.story-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.story-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.story-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Block 1: Data Points */
.story-data-points {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.data-point {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.data-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.data-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
}

/* Block 2: Values List */
.values-bg {
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 98, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 98, 0.08) 0%, transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
    background-color: var(--dark);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.value-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.value-list-item:hover {
    background: rgba(201, 169, 98, 0.1);
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateX(10px);
}

.value-list-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark);
    flex-shrink: 0;
}

.value-list-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 6px;
}

.value-list-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Block 3: Harmony Split */
.block-harmony .harmony-split {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.harmony-side {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.harmony-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.harmony-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 61, 87, 0.5);
}

.tech-side .harmony-overlay {
    background: linear-gradient(135deg, rgba(44, 61, 87, 0.7) 0%, rgba(44, 61, 87, 0.5) 100%);
}

.nature-side .harmony-overlay {
    background: linear-gradient(135deg, rgba(44, 80, 57, 0.6) 0%, rgba(44, 61, 87, 0.5) 100%);
}

.harmony-label {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    z-index: 1;
}

.harmony-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 50px 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
}

.harmony-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.harmony-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold-light);
    transition: all 0.3s ease;
}

.harmony-link:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Block 4: Community Grid */
.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.community-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.community-item:hover {
    background: rgba(201, 169, 98, 0.1);
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-5px);
}

.community-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--dark);
}

.community-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
}

.community-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.expo-collaboration {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(201, 169, 98, 0.05) 100%);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: 16px;
    text-align: left;
}

.expo-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark);
    flex-shrink: 0;
}

.expo-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.expo-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* SBIG Story Responsive */
@media (max-width: 992px) {
    .story-nav {
        right: 15px;
    }

    .story-nav-item {
        width: 60px;
        height: 45px;
    }

    .story-content {
        padding-right: 100px;
    }

    .story-data-points {
        flex-direction: column;
        gap: 15px;
    }

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

    .harmony-split {
        flex-direction: column;
    }

    .harmony-label {
        bottom: 15px;
        font-size: 0.9rem;
    }

    .harmony-links {
        flex-direction: column;
        align-items: center;
    }

    .expo-collaboration {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .story-nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        gap: 8px;
        z-index: 10;
    }

    .story-nav-item {
        width: 45px;
        height: 35px;
        border-radius: 6px;
        opacity: 0.7;
    }

    .story-nav-item.active {
        opacity: 1;
    }

    .story-nav-item img {
        display: block;
    }

    .story-nav-item .nav-number {
        font-size: 0.8rem;
    }

    /* SBIG Story Mobile Fixes */
    .sbig-story {
        height: auto;
        min-height: 100vh;
    }

    .story-slider {
        height: auto;
        min-height: 100vh;
    }

    .story-slides {
        height: auto;
        min-height: 100vh;
    }

    .story-block {
        position: relative;
        min-height: 100vh;
        height: auto;
        display: none;
        padding: 20px 15px;
    }

    .story-block.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .story-content {
        padding: 30px 15px;
        padding-right: 60px;
        padding-bottom: 100px;
        max-width: 100%;
        overflow-y: auto;
    }

    .story-headline {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 25px;
    }

    .story-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .story-data-points {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 25px;
    }

    .data-point {
        padding: 12px 15px;
    }

    .data-label {
        font-size: 0.7rem;
    }

    .data-value {
        font-size: 1rem;
    }

    .values-list {
        gap: 12px;
    }

    .value-list-item {
        flex-direction: column;
        text-align: center;
        padding: 15px 12px;
        gap: 10px;
    }

    .value-list-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .value-list-content h4 {
        font-size: 1rem;
    }

    .value-list-content p {
        font-size: 0.85rem;
    }

    .harmony-split {
        display: none;
    }

    .harmony-content {
        position: relative;
        margin: 0;
        padding: 25px 15px;
        max-width: 100%;
        background: rgba(0, 0, 0, 0.7);
    }

    .harmony-links {
        flex-direction: column;
        gap: 10px;
    }

    .harmony-link {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .community-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .community-item {
        padding: 15px 12px;
    }

    .community-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .community-item h4 {
        font-size: 1rem;
    }

    .community-item p {
        font-size: 0.85rem;
    }

    .expo-collaboration {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 15px;
    }

    .expo-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .expo-text h4 {
        font-size: 1rem;
    }

    .expo-text p {
        font-size: 0.85rem;
    }

    .story-badge {
        padding: 8px 18px;
        font-size: 0.7rem;
    }

    .story-dots {
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .story-nav {
        right: 5px;
        gap: 5px;
    }

    .story-nav-item {
        width: 35px;
        height: 28px;
        border-radius: 5px;
    }

    .story-nav-item .nav-number {
        font-size: 0.7rem;
    }

    .story-content {
        padding: 20px 10px;
        padding-right: 50px;
        padding-bottom: 90px;
    }

    .story-headline {
        font-size: clamp(1.3rem, 4vw, 1.6rem);
    }

    .story-text {
        font-size: 0.9rem;
    }

    .value-list-item {
        padding: 12px 10px;
    }

    .community-item {
        padding: 12px 10px;
    }
}

/* ========================================
   MOBILE SLIDER SYSTEM - Universal
======================================== */
.mobile-slider-wrapper {
    display: none;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.mobile-slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.mobile-slide {
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.mobile-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    padding-bottom: 10px;
}

.mobile-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-dot.active {
    background: var(--gold);
    width: 12px;
    height: 12px;
}

/* Dark section dots */
.section-three .mobile-dot,
.section-four .mobile-dot {
    background: rgba(0, 0, 0, 0.2);
}

.section-three .mobile-dot.active,
.section-four .mobile-dot.active {
    background: var(--gold);
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE
======================================== */
@media (max-width: 768px) {
    /* 1. بازگرداندن سایز پایه به 16 پیکسل */
    html {
        font-size: 16px !important; /* قبلا 14px بود */
    }

    /* 2. افزایش سایز تیترها */
    h1 {
        font-size: 2.8rem !important;
        line-height: 1.2 !important;
    }

    h2 {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    h4 {
        font-size: 1.25rem !important;
    }

    /* 3. افزایش سایز پاراگراف‌ها و متن‌های عمومی */
    p {
        font-size: 1.05rem !important; /* افزایش خوانایی متن بدنه */
        line-height: 1.8 !important;
    }

    /* === SECTION 1 - HERO === */
    .hero-text h1 {
        font-size: clamp(3rem, 12vw, 4.5rem) !important;
    }

    .hero-text .subtitle {
        font-size: 1rem !important; /* افزایش زیرتیتر */
        letter-spacing: 0.3em;
    }

    .tagline-text h2 {
        font-size: clamp(2rem, 7vw, 3rem) !important;
    }

    /* === CARDS & SECTORS === */
    .glass-card h3, 
    .sector-mobile-card h3 {
        font-size: 1.4rem !important;
    }

    .card-text, 
    .sector-mobile-details {
        font-size: 1rem !important; /* متن کارت‌ها */
        line-height: 1.6;
    }

    .sector-mobile-tagline {
        font-size: 1rem !important;
    }

    /* === BUTTONS === */
    .btn {
        font-size: 1rem !important; /* دکمه‌ها بزرگتر و لمس راحت‌تر */
        padding: 16px 30px !important;
    }

    /* === SECTION 2 - SBIG STORY === */
    .story-headline {
        font-size: 2.2rem !important;
    }

    .story-text {
        font-size: 1.1rem !important; /* متن داستان بزرگتر */
        line-height: 1.8 !important;
    }

    .story-badge {
        font-size: 0.85rem !important;
        padding: 8px 20px;
    }

    /* Data Points & Values */
    .data-value {
        font-size: 1.2rem !important;
    }
    
    .value-list-content h4 {
        font-size: 1.15rem !important;
    }
    
    .value-list-content p {
        font-size: 0.95rem !important;
    }

    /* === SECTION 3 - METRICS === */
    .metric-value {
        font-size: 2.2rem !important;
    }
    
    .metric-card p {
        font-size: 1rem !important;
    }

    /* === FOOTER === */
    .footer-brand p, 
    .contact-text a, 
    .contact-text p {
        font-size: 1rem !important;
    }
    
    .footer-bottom p {
        font-size: 0.9rem !important;
    }

    /* === MOBILE SLIDERS - Show on mobile, hide desktop grids === */
    .cards-container {
        display: none !important;
    }

    .mobile-slider {
        display: block !important;
    }

    .sectors-grid {
        display: none !important;
    }

    .sectors-mobile-slider {
        display: block !important;
    }

    .metrics-grid {
        display: none !important;
    }

    .metrics-mobile-slider {
        display: block !important;
    }

    .values-grid {
        display: none !important;
    }

    .values-mobile-slider {
        display: block !important;
            height: auto;
    }

    .community-flow {
        display: none !important;
    }

    .community-mobile-slider {
        display: block !important;
    }

    /* === SECTOR MOBILE CARDS === */
    .sector-mobile-card {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border-radius: 20px;
        border: 1px solid var(--glass-border);
        padding: 30px 25px;
        min-height: 300px;
        height: 300px;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .sector-mobile-card[data-bg="commodities"] {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%), url('images/sector-commodities.jpg') center/cover;
    }

    .sector-mobile-card[data-bg="oil"] {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%), url('images/sector-oil.jpg') center/cover;
    }

    .sector-mobile-card[data-bg="greenhouse"] {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%), url('images/sector-greenhouse.jpg') center/cover;
    }

    .sector-mobile-card[data-bg="chicken"] {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%), url('images/sector-chicken.jpg') center/cover;
    }

    .sector-mobile-card[data-bg="it"] {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%), url('images/sector-it.jpg') center/cover;
    }

    .sector-mobile-card[data-bg="mobility"] {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%), url('images/sector-mobility.jpg') center/cover;
    }

    .sector-mobile-icon {
        width: 60px;
        height: 60px;
        background: rgba(201, 169, 98, 0.3);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 1.5rem;
        color: var(--gold);
    }

    .sector-mobile-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 10px;
    }

    .sector-mobile-tagline {
        font-size: 0.95rem;
        color: var(--gold-light);
        margin-bottom: 15px;
    }

    .sector-mobile-details {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.7;
    }

    /* === METRICS, VALUES, COMMUNITY MOBILE CARDS === */
    .metric-card,
    .value-item,
    .flow-item {
        min-height: 280px;
        height: 280px;
    }
}
/* === EXTRA SMALL DEVICES === */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    .hero-text h1 {
        font-size: clamp(2rem, 10vw, 3rem) !important;
    }

    .hero-text .subtitle {
        letter-spacing: 0.3em;
    }

    .tagline-text h2 {
        font-size: clamp(1.5rem, 6vw, 2.2rem) !important;
    }

    .subsection {
        padding: 30px 10px;
    }

    .glass-card {
        min-height: 320px;
        padding: 20px 15px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.8rem;
    }

    .story-content {
        padding: 25px 15px 90px;
    }

    .story-headline {
        font-size: 1.3rem !important;
    }

    .metric-circle {
        width: 100px;
        height: 100px;
    }

    .metric-value {
        font-size: 1.5rem;
    }

    .hospital-icon-large {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .hospital-icon-large::after {
        width: 120px;
        height: 120px;
    }
}

/* Noise Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}
