:root {
            --color-bg-dark: #000a16;
            --color-bg-darker: #000510;
            --color-bg-card: #0a1420;
            --color-primary: #0ea5e9;
            --color-primary-hover: #0284c7;
            --color-secondary: #10b981;
            --color-accent: #f59e0b;
            --color-text: #ffffff;
            --color-text-muted: #64748b;
            --color-border: #1e293b;
            --color-teal: #14b8a6;
            --color-dashboard-bg: #051628;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
            background-color: var(--color-bg-darker);
            color: var(--color-text);
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            background-color: var(--color-bg-dark);
            border-bottom: 1px solid var(--color-border);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text);
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--color-primary), var(--color-teal));
            border-radius: 6px;
            margin-right: 0.5rem;
        }

        .logo>a>img {
            height:100px !important;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--color-text-muted);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: var(--color-text);
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.6rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }

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

        .btn-outline:hover {
            border-color: var(--color-primary);
            background: rgba(59, 130, 246, 0.1);
        }

        .btn-primary {
            background: var(--color-primary);
            color: white;
        }

        .btn-primary:hover {
            background: var(--color-primary-hover);
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding-top:200px;
            padding-bottom:200px;
            /**background: linear-gradient(180deg, #0a1330 0%, var(--color-bg-darker) 100%);**/

            position: relative;
            min-height: 380px; /* or your preferred height */
            background: linear-gradient(to bottom, rgb(2 119 224 / 19%) 40%, rgb(28 42 89 / 37%) 75%);
            background-size: cover;
            color: #fff;
            z-index: 1;
            /* Optional for extra blur/fade: */
            backdrop-filter: blur(1px);
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 200;
            color: var(--color-text);
            letter-spacing: -0.02em;
        }

        .hero p {
            font-size: 1rem;
            color: var(--color-text-muted);
            max-width: 620px;
            margin: 0 auto 1.5rem;
            line-height: 1.7;
            font-weight: 300;
        }

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

        .dashboard-preview {
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--color-border);
        }

        .dashboard-preview img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Mock Dashboard */
        .dashboard-mock {
            background: linear-gradient(135deg, #051a2d 0%, #0a1930 50%, #051525 100%);
            padding: 0;
            min-height: 450px;
            position: relative;
            display: flex;
        }

        .dashboard-sidebar {
            width: 180px;
            background: rgba(0, 5, 15, 0.5);
            border-right: 1px solid rgba(255, 255, 255, 0.03);
            padding: 1.5rem 0;
        }

        .dashboard-main {
            flex: 1;
            padding: 1.75rem;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            align-items: center;
        }

        .dashboard-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.02);
            padding: 1.25rem;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .stat-label {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            font-weight: 500;
        }

        .stat-value {
            font-size: 1.75rem;
            font-weight: 700;
        }

        .chart-area {
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 6px;
            padding: 1.25rem;
            height: 180px;
            display: flex;
            align-items: flex-end;
            gap: 0.4rem;
        }

        .chart-bar {
            flex: 1;
            background: linear-gradient(180deg, #0ea5e9 0%, rgba(14, 165, 233, 0.2) 100%);
            border-radius: 3px 3px 0 0;
            position: relative;
            box-shadow: 0 0 10px rgba(14, 165, 233, 0.3);
        }

        .menu-item {
            padding: 0.65rem 1.25rem;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 400;
        }

        .menu-item:hover {
            background: rgba(255, 255, 255, 0.03);
            color: var(--color-text);
        }

        .menu-item.active {
            color: #0ea5e9;
            background: rgba(14, 165, 233, 0.08);
            border-left: 3px solid #0ea5e9;
        }

        /* Logos Section */
        .logos-section {
            padding: 3rem 5%;
            background: var(--color-bg-dark);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        .logos-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo-item {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--color-text-muted);
            opacity: 0.7;
        }

        .scrollbar-root {
            width: 100%;
            overflow: hidden;
            background: var(--color-bg-dark);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
            padding: 1rem 0;
        }

        .scrollbar-track {
            display: flex;
            flex-wrap: nowrap;
            gap: 1.25rem;
            will-change: transform;
            animation: scroll-left 28s linear infinite;
        }

        .scrollbar-item {
            flex: 0 0 auto;
            min-width: 220px;
            text-align: center;
        }

        /* Animation */
        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .undher-section {
          background: var(--color-bg-dark);
          padding: 4rem 0rem 2rem 0rem;
        }
        /* Features Grid */
        .features-section {
            padding: 4rem 5%;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 0.5rem;
            font-weight: 400;
        }

        .section-subtitle {
            text-align: center;
            color: var(--color-text-muted);
            margin-bottom: 2.5rem;
            font-size: 0.95rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            padding: 1.75rem;
            border-radius: 10px;
            border-top: 2px solid transparent;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-top-color: #0284c7;
            background: linear-gradient(180deg, rgba(2, 132, 199, 0.08) 0%, var(--color-bg-card) 100%);
        }

        .feature-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .feature-icon {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-weight: 700;
        }

        .icon-blue { color: #0284c7; }
        .icon-green { color: #10b981; }
        .icon-yellow { color: #f59e0b; }

        .feature-card h3 {
            font-size: 1.25rem;
        }

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

        /* Products Section */
        .products-section {
            padding: 5rem 5%;
            background: var(--color-bg-dark);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-card {
            background: var(--color-bg-darker);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid var(--color-border);
        }

        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .product-icon {
            font-size: 2rem;
        }
        .product-card-logo{
            text-align: center !important;
        }

        .product-card-logo>img{
            height:120px;
        }

        /* Solutions Section */
        .solutions-section {
            padding: 5rem 5%;
        }

        .solutions-content {
            display: flex;
            align-items: center;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .solutions-text {
            flex: 1;
        }

        .solutions-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .solutions-text p {
            color: var(--color-text-muted);
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .solutions-image {
            flex: 1;
            position: relative;
        }

        .isometric-illustration {
            width: 100%;
            height: 400px;
            background: linear-gradient(to bottom, rgba(10,20,50,0.35) 5%, rgba(10,20,50,0.90) 95%), url('https://images.pexels.com/photos/33217723/pexels-photo-33217723.jpeg') center top no-repeat;
            background-size: cover;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            border: 1px solid var(--color-border);
        }


            .sc-title {
            font-size: 2.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #fff;
            letter-spacing: -2px;
            }

            .sc-intro {
            color: #bac7d2;
            font-size: 1.07rem;
            margin-bottom: 28px;
            line-height: 1.5;
            font-weight: 400;
            }

            .sc-feature-list {
            list-style: none;
            padding: 0;
            margin: 0px 0px 28px 10px;
            }

            .sc-feature-list li {
            margin-bottom: 21px;
            border-left: 0.px solid #0ea5e9;
            padding-left: 12px;
            }

            .sc-feature-title {
            display: block;
            font-weight: 600;
            color: #0ea5e9;
            margin-bottom: 4px;
            font-size: 1.08rem;
            letter-spacing: -1px;
            }

            .sc-feature-desc {
            display: block;
            color: #e0e7ef;
            font-size: 0.99rem;
            font-weight: 400;
            }

            .dc-partner-full-width {
  width: 100%;
  padding: 90px 0 100px 0;
}
.dc-partner-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 54px;
}
.dc-partner-heading {
  color: #fff;
  font-size: 2.45rem;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 25px;
  line-height: 1.2;
}
.dc-partner-blurb {
  color: #cdd8ef;
  font-size: 1.17rem;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 820px;
}
.dc-partner-feature-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}
.dc-partner-feature {
  color: #b8c6de;
  font-size: 1.09rem;
  font-weight: 400;
}
.feature-main {
  color: #0ea5e9;
  font-weight: 600;
  margin-right: 4px;
}
.dc-partner-usecases-wide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 8px;
}
.usecase-wide {
  background: #151a28;
  border-radius: 14px;
  padding: 30px 24px 24px 24px;
  box-shadow: 0 4px 24px rgba(25,35,68,0.14);
  display: flex;
  flex-direction: column;
  min-height: 120px;
}
.usecase-title {
  color: #0ea5e9;
  font-weight: 700;
  font-size: 1.13rem;
  margin-bottom: 13px;
  letter-spacing: -0.9px;
}
.usecase-desc {
  color: #c7daf3;
  font-size: 1.01rem;
  font-weight: 400;
  line-height: 1.57;
}
@media (max-width:900px) {
  .dc-partner-content { padding: 0 5vw; }
  .dc-partner-heading { font-size: 2rem; }
  .dc-partner-feature-row { gap: 18px;}
  .dc-partner-usecases-wide { grid-template-columns: 1fr; gap: 18px; }
  .usecase-wide { padding: 20px 12px 12px 12px; }
}
        /* Pricing Section */
        .pricing-section {
            padding: 4rem 5%;
            background: var(--color-bg-dark);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--color-bg-card);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            position: relative;
            transition: all 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
        }

        .pricing-card.featured {
            border-color: var(--color-primary);
            background: linear-gradient(180deg, var(--color-bg-card) 0%, rgba(59, 130, 246, 0.05) 100%);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            right: 24px;
            background: var(--color-primary);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .pricing-tier {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pricing-amount {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .pricing-amount span {
            font-size: 1.25rem;
            color: var(--color-text-muted);
        }

        .pricing-description {
            color: var(--color-text-muted);
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            color: var(--color-text-muted);
            font-size: 0.95rem;
        }

        .pricing-features li:before {
            content: "✓";
            color: var(--color-primary);
            font-weight: 700;
            flex-shrink: 0;
        }

        .btn-full {
            width: 100%;
            padding: 1rem;
            font-size: 1rem;
            text-align: center;
            display: block;
        }

        /* Access Section */
        .access-section {
            padding: 5rem 5%;
            background: var(--color-bg-dark);
        }

        .access-content {
            display: flex;
            align-items: center;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .access-image {
            flex: 1;
        }

        .illustration-placeholder {
            width: 100%;
            height: 400px;
            position: relative;
            min-height: 380px; /* or your preferred height */
            background: linear-gradient(to bottom, rgba(10,20,50,0.35) 5%, rgba(10,20,50,0.90) 95%), url('https://images.pexels.com/photos/33217723/pexels-photo-33217723.jpeg') center top no-repeat;
            background-size: cover;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            border: 1px solid var(--color-border);
        }

        .access-text {
            flex: 1;
        }

        .access-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .dc-customers-section {
        background: var(--color-bg-dark);
        width: 100%;
        padding: 78px 0 88px 0;
        box-sizing: border-box;
        color: #dde3ef;
        }
        .dc-customers-content {
        max-width: 860px;
        margin: 0 auto;
        padding: 0 38px;
        }
        .dc-customers-title {
        color: #fff;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 20px;
        letter-spacing: -0.9px;
        }
        .dc-customers-main {
        color: #cdd8ef;
        font-size: 1.13rem;
        margin-bottom: 19px;
        font-weight: 400;
        }
        .dc-customers-secondary {
        color: #a9b8d0;
        font-size: 1.07rem;
        margin-bottom: 34px;
        font-weight: 400;
        }
        .dc-customers-actions {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        }
        @media (max-width: 700px) {
        .dc-customers-content { padding: 0 5vw; }
        .dc-customers-actions { flex-direction: column; gap: 14px;}
        .dc-action-btn, .dc-action-btn.alt { width: 100%; text-align: center; padding: 13px 0; }
        }

        /* About Section */
        .about-section {
            padding: 5rem 5%;
        }

        .about-content {
            display: flex;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .about-illustration {
            flex: 1;
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        /* FAQ Section */
        .faq-section {
          background: var(--color-bg-dark);
            padding: 5rem 5%;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: var(--color-bg-dark);
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            color: var(--color-text-muted);
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        /* Status Section */
.status-section {
  padding: 5rem 5%;
  background: var(--color-bg-darker);
}

.status-container {
  max-width: 1200px;
  margin: 0 auto;
}

.status-header {
  text-align: center;
  margin-bottom: 3rem;
}

.status-header h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.status-subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.status-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.status-indicator.operational {
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.status-indicator.degraded {
  background: #f59e0b;
}

.status-indicator.down {
  background: #ef4444;
}

.status-text {
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Status Stats */
.status-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-box {
  background: var(--color-bg-card);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.stat-label {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
}

/* Regions Section */
.status-regions {
  margin-bottom: 3rem;
}

.status-section-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.region-group {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.region-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text);
}

.operational-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.service-name {
  flex: 1;
  color: var(--color-text);
  font-weight: 500;
}

.service-meta {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* Incident History */
.incident-history {
  margin-bottom: 2rem;
}

.incident-item {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.incident-date {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.incident-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.incident-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.incident-description {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.incident-badge {
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.incident-badge.resolved {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.incident-badge.investigating {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.incident-badge.identified {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

/* Subscribe */
.status-subscribe {
  text-align: center;
  padding: 2rem;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.status-subscribe .btn {
  margin-bottom: 1rem;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .status-section {
    padding: 2rem 1rem;
  }

  .status-header h1 {
    font-size: 1.75rem;
  }

  .status-stats {
    grid-template-columns: 1fr;
  }

  .region-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

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

  .incident-badge {
    align-self: flex-start;
  }
}


        /* Footer */
        footer {
            background: var(--color-bg-dark);
            padding: 4rem 5% 2rem;
            border-top: 1px solid var(--color-border);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto 3rem;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
        }

        .footer-brand .logo {
            margin-bottom: 1rem;
        }

        .footer-brand>.logo>a>img {
            height:50px !important;
        }

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

        .footer-links h4 {
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--color-text);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--color-border);
            color: var(--color-text-muted);
            font-size: 0.9rem;
        }

        /* Responsive */
@media (max-width: 768px) {
  /* Navigation */
  nav {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
  }

  .logo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .logo > a > img {
    height: 60px !important;
  }

  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text, #fff);
    position: absolute;
    right: 1.25rem;
    top: 1rem;
    cursor: pointer;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-top: 0.5rem;
    text-align: center;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-buttons {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .nav-buttons .btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
  }

  /* Hero Section */
  .hero {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.95rem;
    padding: 0 1.25rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1.25rem;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  /* Scrollbar */
  .scrollbar-root {
    display: none;
  }

  /* Features Section */
  .features-section {
    text-align: center;
    padding: 2rem 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 0.5rem;
    gap: 1rem;
  }

  .feature-card {
    padding: 1.25rem;
    text-align: left;
  }

  /* Products Section */
  .products-section {
    text-align: center;
    padding: 2rem 1rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 0.5rem;
  }

  .product-card {
    padding: 1.75rem;
    text-align: left;
  }

  /* Solutions Section */
  .solutions-section {
    padding: 2rem 1rem;
    text-align: center;
  }

  .solutions-content {
    flex-direction: column;
    gap: 2rem;
    padding: 0 0.5rem;
  }

  .solutions-text {
    text-align: left;
  }

  .solutions-text h2 {
    font-size: 1.9rem;
  }

  .solutions-image {
    width: 100%;
  }

  .isometric-illustration {
    height: 260px;
  }

  /* Pricing Section */
  .pricing-section {
    padding: 2rem 1rem;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .pricing-card {
    padding: 1.75rem 1.5rem;
    text-align: left;
  }

  /* Partner Section */
  .dc-partner-full-width {
    padding: 2rem 0;
    text-align: center;
  }

  .dc-partner-content {
    padding: 0 1.25rem;
  }

  .dc-partner-feature-row {
    flex-direction: column;
    gap: 1rem;
    text-align: left;
  }

  .dc-partner-usecases-wide {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .usecase-wide {
    text-align: left;
  }

  /* Access Section */
  .access-section {
    padding: 2rem 1rem;
    text-align: center;
  }

  .access-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .access-text {
    text-align: left;
  }

  .access-text h2 {
    font-size: 1.9rem;
  }

  .illustration-placeholder {
    height: 260px;
  }

  /* About Section */
  .about-section {
    padding: 2rem 1rem;
    text-align: center;
  }

  .about-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .about-text {
    text-align: left;
  }

  .about-text h2 {
    font-size: 1.9rem;
  }

  /* Customers Section */
  .dc-customers-section {
    text-align: center;
    padding: 2rem 1rem;
  }

  .dc-customers-content {
    padding: 0 1rem;
  }

  .dc-customers-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .dc-customers-actions .btn {
    width: 100%;
  }

  /* FAQ Section */
  .faq-section {
    padding: 2rem 1rem;
    text-align: center;
  }

  .faq-container {
    padding: 0 0.5rem;
  }

  .faq-item {
    text-align: left;
  }

  .faq-question {
    padding: 1.25rem;
    text-align: left;
  }

  .faq-answer {
    padding: 0 1.25rem 1.25rem;
  }

  /* Footer */
  footer {
    text-align: center;
    padding: 2rem 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand .logo {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .footer-brand p {
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-links h4 {
    margin-bottom: 0.75rem;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 1rem;
  }

  /* Global text sizing */
  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
}

@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    gap: 2rem;
    margin-top: 0;
  }
}

