/* =============================================
   MICRON.CSS - Micron Brand Page
   Zen Interactive Technologies Theme
   ============================================= */

:root {
    --primary-blue: #B8E0FF;
    --theme-yellow: #F5D547;
    --cream-bg: #F8F7F4;
    --dark: #000000;
    --text-muted: #666;
    --micron-blue: #0077C8;
    --micron-dark: #1a1a2e;
}

/* Hero Section */
.micron-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #9ed0ff 100%);
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.micron-hero-bg {
    position: relative;
    z-index: 2;
    width: 100%;
}

.brand-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: var(--theme-yellow);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.brand-badge-large i {
    font-size: 20px;
}

.micron-title {
    font-size: 64px;
    font-weight: 800;
    color: #000;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.micron-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    max-width: 90%;
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-micron-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: var(--theme-yellow);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.btn-micron-primary:hover {
    background: var(--theme-yellow);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-micron-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #000;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.btn-micron-secondary:hover {
    background: #000;
    color: var(--theme-yellow);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-icon {
    width: 150px;
    height: 150px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--theme-yellow);
    box-shadow: 0 0 0 20px rgba(0,0,0,0.05), 0 0 0 40px rgba(0,0,0,0.03);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 15px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #000;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: var(--micron-blue);
}

.card-1 { top: 10%; left: 10%; animation-delay: 0s; }
.card-2 { top: 20%; right: 10%; animation-delay: 2s; }
.card-3 { bottom: 20%; left: 5%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
/*     width: 100%; */
    height: 100px;
}

/* About Brand Section */
.about-brand {
    padding: 100px 0;
    background: #fff;
}

.about-image-wrapper {
    position: relative;
    display: inline-block;
}

.about-image {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--cream-bg) 0%, #e8e6e1 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: var(--micron-blue);
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245,213,71,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: #000;
    color: var(--theme-yellow);
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.experience-badge .years {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding-left: 50px;
}

.section-tag {
    display: inline-block;
    background: var(--theme-yellow);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 25px;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.brand-stats {
    display: flex;
    gap: 40px;
}

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

.stat-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
}

.stat-number {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #000;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}
/* =============================================
   MICRON PRODUCTS — HPE-Style Layout
   ============================================= */

:root {
    --theme-yellow: #F5D547;
    --primary-blue: #B8E0FF;
    --cream-bg: #F8F7F4;
    --dark: #000000;
    --text-muted: #666;
    --micron-blue: #0077C8;
}

.micron-products {
    padding: 100px 0;
    background: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Section Header */
.products-section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    background: var(--theme-yellow);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
}

.products-section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.products-section-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

/* ── Category Block ── */
.product-category-block {
    border-top: 1px solid #ebebeb;
    padding: 70px 0;
}

.product-category-block:last-child {
    border-bottom: 1px solid #ebebeb;
}

/* ── HPE Two-Column Row ── */
.hpe-row {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

/* ── Left Side (Category Info) ── */
.hpe-left {
    position: sticky;
    top: 100px;
}

.hpe-left .cat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.cat-icon.ssd        { background: var(--primary-blue); color: #000; }
.cat-icon.memory     { background: #E3F2FD; color: #1976D2; }
.cat-icon.nvme       { background: #FFF3E0; color: #F57C00; }
.cat-icon.storage-net{ background: #E8F5E9; color: #2E7D32; }

.hpe-left h3 {
    font-size: 26px;
    font-weight: 800;
    color: #000;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hpe-left p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 22px;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.view-all-link:hover {
    gap: 13px;
    color: var(--micron-blue);
}

/* ── Right Side (Cards) ── */
.hpe-right {
    min-width: 0;
}

.hpe-cards {
    display: grid;
    gap: 22px;
}

.hpe-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.hpe-cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.hpe-cards.cols-1 { grid-template-columns: repeat(3, 1fr); } /* 1 card = 1/3 width */

/* ── Product Card ── */
.product-card-hpe {
    background: #fff;
    border: 1.5px solid #ebebeb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.product-card-hpe:hover {
    border-color: var(--theme-yellow);
    box-shadow: 0 16px 45px rgba(0,0,0,0.10);
    transform: translateY(-6px);
}

/* Card Top */
.card-top {
    padding: 28px 26px 20px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tag {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag.popular   { background: #000; color: var(--theme-yellow); }
.tag.new       { background: #00C853; color: #fff; }
.tag.ai        { background: #7C4DFF; color: #fff; }
.tag.edge      { background: #FF6D00; color: #fff; }
.tag.high-perf { background: #D50000; color: #fff; }

/* Product Visual */
.product-visual {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    transition: transform 0.3s ease;
}

.product-card-hpe:hover .product-visual {
    transform: scale(1.08);
}

.ssd-bg         { background: var(--primary-blue); color: #000; }
.ssd-bg-alt     { background: #000; color: var(--theme-yellow); }
.memory-bg      { background: #E3F2FD; color: #1976D2; }
.memory-bg-alt  { background: #BBDEFB; color: #1565C0; }
.nvme-bg        { background: #FFF3E0; color: #EF6C00; }
.nvme-bg-alt    { background: #FFE0B2; color: #E65100; }
.storage-net-bg { background: #E8F5E9; color: #2E7D32; }

.card-top h4 {
    font-size: 17px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
    line-height: 1.3;
}

.sku {
    font-size: 11px;
    color: #aaa;
    font-family: 'Courier New', monospace;
    margin: 0;
    letter-spacing: 0.4px;
}

/* Card Bottom */
.card-bottom {
    padding: 20px 26px 26px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

.desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 42px;
}

.spec-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.spec-badges span {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

/* Card Actions */
.card-actions {
    display: flex;
    gap: 10px;
}

.btn-quote {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #000;
    padding: 11px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #000;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-quote:hover {
    background: #000;
    color: var(--theme-yellow);
}

.btn-select {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    padding: 11px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #000;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-select:hover {
    background: var(--theme-yellow);
    color: #000;
    border-color: var(--theme-yellow);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .hpe-row {
        grid-template-columns: 250px 1fr;
        gap: 35px;
    }
    .hpe-cards.cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hpe-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hpe-left {
        position: static;
    }
    .hpe-cards.cols-3,
    .hpe-cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
    .hpe-cards.cols-1 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .micron-products { padding: 60px 0; }
    .products-section-header h2 { font-size: 28px; }
    .hpe-cards.cols-3,
    .hpe-cards.cols-2,
    .hpe-cards.cols-1 { grid-template-columns: 1fr; }
    .product-category-block { padding: 50px 0; }
}

/* Use Cases */
.use-cases {
    padding: 100px 0;
    background: linear-gradient(135deg, #000 0%, #1a1a2e 100%);
    color: #fff;
}

.use-cases .section-tag {
    background: var(--theme-yellow);
    color: #000;
}

.use-cases .section-header h2 {
    color: #fff;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.use-case-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.use-case-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--theme-yellow);
    transform: translateY(-10px);
}

.use-case-icon {
    width: 80px;
    height: 80px;
    background: var(--theme-yellow);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #000;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon {
    transform: scale(1.1) rotate(5deg);
}

.use-case-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.use-case-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin: 0;
}

/* Why Buy From Us */
.why-us {
    padding: 100px 0;
    background: var(--cream-bg);
}

.why-us h2 {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    margin: 20px 0 25px;
    line-height: 1.2;
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--theme-yellow);
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.why-us-visual {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.partnership-badge {
    background: #000;
    color: #fff;
    padding: 30px 40px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.partnership-badge i {
    font-size: 40px;
    color: var(--theme-yellow);
}

.badge-title {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 5px;
}

.badge-subtitle {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.coverage-map {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.region {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.region.active {
    background: var(--theme-yellow);
    transform: scale(1.05);
}

.region i {
    display: block;
    font-size: 24px;
    color: var(--micron-blue);
    margin-bottom: 8px;
}

.region.active i {
    color: #000;
}

.region span {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

/* CTA Section */
.cta-section-micron {
    padding: 80px 0;
    background: #fff;
}

.cta-box-micron {
    background: linear-gradient(135deg, #000 0%, #1a1a2e 100%);
    padding: 60px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-box-micron::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: var(--theme-yellow);
    border-radius: 50%;
    opacity: 0.1;
}

.cta-box-micron h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-box-micron p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    margin: 0;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--theme-yellow);
    color: #000;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    margin-right: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--theme-yellow);
}

.btn-cta-primary:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #000;
    color: var(--theme-yellow);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--theme-yellow);
    color: #000;
    transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 991px) {
    .micron-title { font-size: 48px; }
    .micron-hero { padding: 120px 0 80px; min-height: auto; }
    .about-content { padding-left: 0; margin-top: 40px; }
    .products-showcase { flex-direction: column; }
    .product-featured-card.secondary { flex: 1; }
    .cta-box-micron { padding: 40px 30px; text-align: center; }
    .btn-cta-primary, .btn-cta-secondary { width: 100%; justify-content: center; margin-right: 0; }
}

@media (max-width: 767px) {
    .micron-title { font-size: 36px; }
    .hero-actions { flex-direction: column; }
    .btn-micron-primary, .btn-micron-secondary { width: 100%; justify-content: center; }
    .floating-card { display: none; }
    .experience-badge { right: 0; bottom: -20px; }
    .about-image { width: 100%; height: 300px; }
    .brand-stats { flex-direction: column; gap: 20px; }
    .category-info { margin-bottom: 30px; }
    .coverage-map { grid-template-columns: repeat(2, 1fr); }
    .cta-box-micron h2 { font-size: 28px; }
}
/* Footer Styles */
.footer {
    background: var(--cream-bg);
    padding: 80px 0 0;
    position: relative;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--theme-yellow);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #000;
    transform: translateX(5px);
}

.social-icons-footer {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons-footer a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.social-icons-footer a:hover {
    background: var(--theme-yellow);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(245, 213, 71, 0.4);
}

.footer-bottom {
    border-top: 1px solid #ddd;
    margin-top: 60px;
    padding: 30px 0;
}

.footer-copy {
    color: #4a5568;
    font-size: 14px;
    margin: 0;
}

.footer-copy .brand-name {
    color: #000;
    font-weight: 700;
}

.footer-bottom .footer-links a {
    color: #4a5568;
    font-size: 13px;
}

.footer-bottom .footer-links a:hover {
    color: #000;
}

.divider {
    color: #ccc;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--theme-yellow);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #000;
    color: var(--theme-yellow);
    transform: translateY(-5px);
}

/* Active Navigation State */
.navbar-nav .nav-link.active {
    color: #000 !important;
}

.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .page-hero-title {
        font-size: 42px;
    }
    
    .solutions-hero {
        padding: 140px 0 80px;
    }
    
    .solutions-hero-grid {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .spaces-grid {
        grid-template-columns: 1fr;
    }
    
    .scenario-features-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-box {
        padding: 40px;
        text-align: center;
    }
    
    .cta-box h2 {
        font-size: 28px;
    }
    
    .scenario-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .scenario-btn {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .page-hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .solutions-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-card {
        padding: 20px;
    }
    
    .hero-card i {
        font-size: 28px;
    }
    
    .hero-card span {
        font-size: 14px;
    }
    
    .platform-card,
    .industry-card,
    .partner-card {
        margin-bottom: 20px;
    }
    
    .partners-row {
        grid-template-columns: 1fr;
    }
    
    .scenario-tabs {
        padding: 20px;
    }
    
    .scenario-image img {
        height: 250px;
    }
    
    .solutions-showcase {
        padding: 20px;
    }
    
    .showcase-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto;
    }
}

/* Smooth Scroll Offset for Fixed Header */
#platforms,
#meeting-spaces,
#industries,
#scenarios,
#partners {
    scroll-margin-top: 100px;
}
/* Section spacing */
.value-prop{
    padding: 80px 0;   /* top and bottom space */
}

/* Header spacing */
.value-prop .section-header{
    margin-bottom: 50px;
}

/* Row spacing */
.value-prop .row{
    row-gap: 35px;   /* vertical gap between rows */
}

/* Card styling with spacing */
.value-card{
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
}

/* Icon spacing */
.value-card .value-icon{
    margin-bottom: 15px;
    font-size: 22px;
}

/* Title spacing */
.value-card h4{
    margin-bottom: 10px;
}

/* Paragraph spacing */
.value-card p{
    margin-bottom: 0;
    line-height: 1.6;
}