/* Cloud & Infrastructure Specific Styles */

:root {
    --cloud-dark: #0f172a;
    --cloud-darker: #020617;
    --cloud-panel: #1e293b;
    --cyan-glow: #06b6d4;
    --cyan-dim: rgba(6, 182, 212, 0.1);
    --green-signal: #10b981;
    --red-alert: #ef4444;
    --border-tech: rgba(148, 163, 184, 0.2);
    --font-tech: 'Inter', sans-serif;
}

/* Global Overrides for this page */
body {
    background-color: var(--cloud-darker);
    /* Default dark theme for this page */
    color: #e2e8f0;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #22d3ee 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-cyan-glow {
    background: var(--cyan-glow);
    color: #000;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 6px;
    /* Tech look */
    text-decoration: none;
    box-shadow: 0 0 15px var(--cyan-dim);
    transition: all 0.3s ease;
    border: 1px solid var(--cyan-glow);
}

.btn-cyan-glow:hover {
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
    transform: translateY(-2px);
    background: #0891b2;
    border-color: #0891b2;
    color: white;
}

.btn-outline-cyan {
    background: transparent;
    color: #22d3ee;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid #22d3ee;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-cyan:hover {
    background: rgba(34, 211, 238, 0.1);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.cloud-hero {
    position: relative;
    padding: 160px 0 100px;
    background: radial-gradient(circle at 50% 50%, #1e293b 0%, #020617 100%);
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

.cloud-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tech-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(6, 182, 212, 0.1);
    color: #22d3ee;
    border: 1px solid rgba(6, 182, 212, 0.3);
    font-family: var(--font-tech);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cloud-hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.trust-strip {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 0.9rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item i {
    color: var(--green-signal);
}

.hero-btns {
    display: flex;
    gap: 15px;
}

/* Hero Visual: Control Panel */
.control-panel-mockup {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-tech);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.panel-header {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-tech);
    padding-bottom: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #eab308;
}

.dot.green {
    background: #22c55e;
}

.panel-title {
    margin-left: 10px;
    font-family: var(--font-tech);
    color: #94a3b8;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.topology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    position: relative;
    height: 300px;
    /* Fixed height for visual */
}

.node {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #94a3b8;
    position: relative;
    transition: all 0.3s;
    z-index: 2;
}

.node:hover {
    border-color: #22d3ee;
    color: #22d3ee;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.15);
    transform: translateY(-5px);
}

.node i {
    font-size: 1.5rem;
}

.node span {
    font-size: 0.8rem;
    font-family: var(--font-tech);
}

.status-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-signal);
    position: absolute;
    top: 8px;
    right: 8px;
    box-shadow: 0 0 5px var(--green-signal);
}

/* Connecting Lines (Fake) */
.path {
    position: absolute;
    background: #334155;
    z-index: 1;
    overflow: hidden;
}

.path::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #22d3ee, transparent);
    transform: translateX(-100%);
    animation: flow 3s infinite linear;
}

@keyframes flow {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.path-1 {
    top: 25%;
    left: 28%;
    width: 14%;
    height: 2px;
}

.path-2 {
    top: 25%;
    left: 58%;
    width: 14%;
    height: 2px;
}

.node.lb {
    grid-column: 1;
    grid-row: 1;
}

.node.app {
    grid-column: 2;
    grid-row: 1;
}

.node.db {
    grid-column: 3;
    grid-row: 1;
}

.mini-widget {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-tech);
}

.w-latency {
    grid-column: 1 / span 1;
    grid-row: 2;
    align-self: center;
}

.w-uptime {
    grid-column: 3 / span 1;
    grid-row: 2;
    align-self: center;
}

.mini-widget label {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
}

.mini-widget .val {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
}

.text-green {
    color: var(--green-signal);
}

/* --- Section Styling --- */
.section {
    padding: 100px 0;
}

.section-dark {
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
}

.section-light {
    background: #ffffff;
    color: #1e293b;
}

.section-dark-angle {
    background: #0f172a;
    position: relative;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
    margin-top: -50px;
    padding-top: 150px;
}

.section-bg-code {
    background: #0b1120;
    /* Very dark for code feel */
}

/* Headers */
.section-header.center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

.section-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

.text-dark {
    color: #0f172a !important;
}

/* --- 2) Capabilities Grid --- */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cap-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cap-card:hover {
    background: rgba(30, 41, 59, 1);
    transform: translateY(-8px);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

.cap-icon {
    font-size: 2rem;
    color: #38bdf8;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.cap-card:hover .cap-icon {
    transform: scale(1.1);
}

.cap-card h3 {
    font-size: 1.2rem;
    color: #f1f5f9;
    margin-bottom: 10px;
}

.cap-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
}

.cap-hover-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(6, 182, 212, 0.1);
    color: #22d3ee;
    padding: 10px;
    font-size: 0.85rem;
    text-align: center;
    font-family: var(--font-tech);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cap-card:hover .cap-hover-content {
    transform: translateY(0);
}

/* --- 3) Architecture Tabs --- */
.arch-tabs-wrapper {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
}

.arch-tabs-nav {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0;
    margin-bottom: 30px;
    position: relative;
}

.arch-tab {
    background: none;
    border: none;
    padding: 15px 25px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
    z-index: 2;
}

.arch-tab.active {
    color: #0f172a;
}

.arch-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #0ea5e9;
    width: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.arch-content-area {
    min-height: 250px;
    position: relative;
}

.arch-pane {
    display: none;
    animation: fadeSlide 0.5s ease;
}

.arch-pane.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pane-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.pane-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pane-text p {
    margin-bottom: 20px;
    color: #475569;
}

.check-list-dark {
    list-style: none;
    padding: 0;
}

.check-list-dark li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #334155;
    font-weight: 500;
}

.check-list-dark li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: bold;
}

.rec-badge {
    background: #0f172a;
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 10px;
}

.pane-comp {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.comp-badge {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #0f172a;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.comp-badge:hover {
    transform: translateY(-3px);
    border-color: #0ea5e9;
}

/* --- 4) Pillars --- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.pillar-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.pillar-icon {
    font-size: 2.5rem;
    color: #a855f7;
    /* Purple Accent */
    margin-bottom: 20px;
}

.pillar-card:nth-child(2) .pillar-icon {
    color: #3b82f6;
}

.pillar-card:nth-child(3) .pillar-icon {
    color: #ef4444;
}

.pillar-card:nth-child(4) .pillar-icon {
    color: #22c55e;
}

.pillar-card h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.pillar-card p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.honesty-strip {
    background: linear-gradient(90deg, #1e1b4b 0%, #312e81 100%);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.honesty-strip p {
    font-size: 1.25rem;
    font-style: italic;
    color: #e0e7ff;
    font-family: 'Georgia', serif;
}

/* --- 5) Pipeline Stepper --- */
.pipeline-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.pipeline-line {
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #334155;
    z-index: 0;
}

.pipeline-step {
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

.step-marker {
    position: absolute;
    left: -40px;
    width: 30px;
    height: 30px;
    background: #0f172a;
    border: 2px solid #334155;
    border-radius: 50%;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s;
}

.pipeline-step.expanded .step-marker {
    border-color: #22d3ee;
    color: #22d3ee;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
}

.step-header {
    background: #1e293b;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.step-header:hover {
    border-color: #475569;
}

.pipeline-step.expanded .step-header {
    background: #1e293b;
    border-color: #38bdf8;
}

.step-header h4 {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

.step-toggle {
    color: #94a3b8;
    transition: transform 0.3s;
}

.pipeline-step.expanded .step-toggle {
    transform: rotate(180deg);
}

.step-body {
    max-height: 0;
    overflow: hidden;
    background: #0f172a;
    margin-top: -5px;
    border-radius: 0 0 8px 8px;
    border: 1px solid #1e293b;
    border-top: none;
    padding: 0 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.pipeline-step.expanded .step-body {
    max-height: 200px;
    padding: 20px;
}

.step-meta {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #1e293b;
    font-size: 0.85rem;
    color: #22d3ee;
    font-family: var(--font-tech);
}

/* --- 6) Security & Monitoring --- */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.col-security h3,
.col-monitoring h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.security-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.sec-tile {
    background: #1e293b;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sec-tile:hover {
    transform: translateY(-3px);
    background: #252f40;
}

.sec-tile i {
    font-size: 1.5rem;
    color: #f59e0b;
}

.sec-tile span {
    font-weight: 500;
    font-size: 0.95rem;
    color: #e2e8f0;
}

/* Dashboard Mockup */
.monitor-dashboard {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #1e293b;
    margin-bottom: 15px;
}

.dash-status {
    color: var(--green-signal);
    font-weight: 600;
    font-size: 0.9rem;
}

.dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.dash-card {
    background: #0f172a;
    padding: 15px;
    border-radius: 6px;
}

.dash-card label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 5px;
}

.dash-val {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.dash-graph svg {
    width: 100%;
    height: 40px;
    margin-top: 5px;
}

.graph-line {
    stroke: #22d3ee;
    stroke-width: 2;
}

.checklist-mini {
    list-style: none;
    padding: 0;
    border-top: 1px solid #1e293b;
    padding-top: 15px;
}

.checklist-mini li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.checklist-mini li i {
    color: var(--green-signal);
}

/* --- 8) Deliverables --- */
.deliverables-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.del-list {
    list-style: none;
    padding: 0;
    column-count: 2;
    margin-bottom: 40px;
}

.del-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #334155;
    break-inside: avoid;
    display: flex;
    gap: 10px;
}

.del-list li i {
    color: #10b981;
    margin-top: 4px;
}

.addons-grid h4 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #64748b;
    text-transform: uppercase;
}

.addon-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
    transition: all 0.2s;
}

.chip:hover {
    background: #f0f9ff;
    border-color: #bae6fd;
    color: #0284c7;
    transform: translateY(-2px);
}

/* --- 9) Tools --- */
.section-tools {
    background: #ffffff;
    padding: 60px 0;
    border-top: 1px solid #f1f5f9;
}

.section-tools h3 {
    color: #0f172a;
    margin-bottom: 10px;
}

.tools-sub {
    color: #64748b;
    margin-bottom: 40px;
}

.tool-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tool-badge {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 6px;
    color: #475569;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.tool-badge:hover {
    background: #0f172a;
    color: white;
    transform: translateY(-3px);
}

/* --- 10) Tiers --- */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: start;
}

.tier-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
    position: relative;
}

.tier-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: #0f172a;
}

.tier-card ul {
    list-style: none;
    padding: 0;
}

.tier-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.tier-card li:last-child {
    border-bottom: none;
}

.tier-card:hover {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.tier-card.popular {
    border: 2px solid #0ea5e9;
    box-shadow: 0 10px 30px -5px rgba(14, 165, 233, 0.15);
    transform: scale(1.05);
}

.tier-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.pop-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0ea5e9;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* --- 11) FAQs --- */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #334155;
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    color: #f1f5f9;
    font-size: 1.1rem;
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
    color: #22d3ee;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: #22d3ee;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #94a3b8;
    line-height: 1.6;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 150px;
    padding-bottom: 20px;
}

/* --- 12) Final CTA --- */
.section-cta-final {
    background: #020617;
    position: relative;
    padding: 120px 0;
}

.divider-line {
    width: 60px;
    height: 4px;
    background: #22d3ee;
    margin: 0 auto 30px;
}

.section-cta-final h2 {
    color: white;
    margin-bottom: 15px;
}

.section-cta-final p {
    color: #94a3b8;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.justify-center {
    justify-content: center;
}

.reassurance {
    margin-top: 30px;
    font-size: 0.9rem !important;
    opacity: 0.7;
}

/* --- Mobile Sticky CTA --- */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid #334155;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

.btn-sm {
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
    text-align: center;
    justify-content: center;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .cloud-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        position: relative;
    }

    .cloud-hero-visual {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 600px;
        z-index: 0;
        opacity: 0.15;
        pointer-events: none;
        display: flex;
        justify-content: center;
    }

    .cloud-hero-text {
        position: relative;
        z-index: 1;
        margin-bottom: 0;
        padding: 40px 0;
    }

    .hero-btns {
        justify-content: center;
    }

    .trust-strip {
        justify-content: center;
    }

    .capabilities-grid,
    .pillars-grid,
    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pane-grid {
        grid-template-columns: 1fr;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cloud-hero-text h1 {
        font-size: 2.5rem;
    }

    .capabilities-grid,
    .pillars-grid,
    .tiers-grid {
        grid-template-columns: 1fr;
    }

    .del-list {
        column-count: 1;
    }

    .arch-tabs-nav {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }

    .step-marker {
        left: -30px;
        width: 25px;
        height: 25px;
    }

    .pipeline-wrapper {
        padding-left: 30px;
    }

    .mobile-sticky-cta {
        display: flex;
    }
}

@media (min-width: 769px) {
    .mobile-sticky-cta {
        display: none !important;
    }
}