:root {
    --terra-main: #E2725B;
    --terra-dark: #C05A44;
    --terra-light: #F5D6D0;
    --bg-base: #FAFAFA;
    --bg-surface: #FFFFFF;
    --text-primary: #2C2C2C;
    --text-secondary: #5A5A5A;
    --radius-soft: 16px;
    --radius-pill: 50px;
    --shadow-float: 0 12px 34px rgba(226, 114, 91, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-soft);
}

a {
    color: var(--terra-main);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--terra-dark);
}

/* Typography */
.friendly-display-text {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.section-friendly-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--terra-dark);
}

.text-center {
    text-align: center;
}

/* Header */
.nimbus-masthead {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--terra-light);
}

.masthead-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nimbus-brand-mark {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--terra-main);
}

.masthead-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.masthead-nav a:not(.nav-action-link) {
    color: var(--text-secondary);
    font-weight: 600;
}

.masthead-nav a:not(.nav-action-link):hover {
    color: var(--terra-main);
}

.nav-action-link, .primary-interaction-node {
    background-color: var(--terra-main);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-action-link:hover, .primary-interaction-node:hover {
    background-color: var(--terra-dark);
    transform: translateY(-2px);
}

/* Hero */
.cloud-hero-stage {
    padding: 6rem 2rem 4rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-micro-badge {
    display: inline-block;
    background-color: var(--terra-light);
    color: var(--terra-dark);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.hero-action-cluster {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.secondary-ghost-node {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    color: var(--terra-main);
    background-color: transparent;
    border: 2px solid var(--terra-main);
}

.secondary-ghost-node:hover {
    background-color: var(--terra-light);
}

.hero-visual-anchor {
    position: relative;
    margin-top: 2.3rem;
}

.hero-visual-anchor img {
    max-height: 500px;
    box-shadow: var(--shadow-float);
}

.floating-stat-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-soft);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    text-align: left;
    max-width: 250px;
    border-left: 4px solid var(--terra-main);
}

.floating-stat-card strong {
    font-size: 2rem;
    color: var(--terra-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.floating-stat-card span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* Narrative Zone (About) */
.forge-narrative-zone {
    padding: 7.5rem 2rem;
    background-color: var(--bg-surface);
}

.narrative-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.narrative-prose p {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.tiny-disclaimer {
    font-size: 0.8rem !important;
    color: #888;
    margin-top: 2rem;
}

/* Offerings (Services) */
.infra-offerings-deck {
    padding: 5.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.offerings-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.offerings-asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.offering-card {
    background: var(--bg-surface);
    padding: 2.5rem;
    border-radius: var(--radius-soft);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #EFEFEF;
    display: flex;
    flex-direction: column;
}

.offering-card.highlight-card {
    grid-column: span 2;
    background-color: var(--terra-light);
    border-color: var(--terra-main);
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

.offering-card.highlight-card img {
    width: 200px;
    height: 200px;
    margin-bottom: 0;
}

.offering-card.image-card img {
    margin-bottom: 1.5rem;
    height: 180px;
}

.offering-card h3 {
    color: var(--terra-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Testimonials */
.k8s-praise-wall {
    background-color: var(--terra-main);
    padding: 6rem 2rem;
    color: white;
}

.k8s-praise-wall .section-friendly-title {
    color: white;
}

.praise-scroller {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.praise-tile {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: var(--radius-soft);
    backdrop-filter: blur(4px);
}

.praise-tile p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.praise-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.praise-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
}

.praise-author strong {
    display: block;
    font-size: 1rem;
}

.praise-author span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Contact & FAQ */
.reach-nimbus-hub {
    padding: 8rem 2rem;
    background-color: var(--bg-surface);
}

.hub-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.faq-item {
    border-bottom: 1px solid #EFEFEF;
    margin-bottom: 1rem;
}

.faq-trigger {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-family: inherit;
}

.faq-trigger::after {
    content: '+';
    color: var(--terra-main);
    font-size: 1.5rem;
}

.faq-trigger.active::after {
    content: '-';
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-panel p {
    padding-bottom: 1.5rem;
    color: var(--text-secondary);
}

.faq-illustration {
    margin-top: 3rem;
    height: 250px;
}

.hub-form-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--terra-dark);
}

.hub-form-wrapper > p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.friendly-form .input-cluster {
    margin-bottom: 1.5rem;
}

.friendly-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.friendly-form input,
.friendly-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #CCC;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.friendly-form input:focus,
.friendly-form textarea:focus {
    outline: none;
    border-color: var(--terra-main);
}

.full-width {
    width: 100%;
}

/* Footer */
.nimbus-basement {
    background-color: #222;
    color: #CCC;
    padding: 4rem 2rem 2rem;
}

.basement-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.basement-grid h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.basement-grid p, .basement-grid a {
    margin-bottom: 0.8rem;
    color: #AAA;
    display: block;
}

.basement-grid a:hover {
    color: var(--terra-light);
}

.business-hours {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
}

.basement-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #444;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
    .narrative-grid,
    .hub-layout {
        grid-template-columns: 1fr;
    }
    
    .offerings-asymmetric-grid {
        grid-template-columns: 1fr;
    }
    
    .offering-card.highlight-card {
        grid-column: 1;
        flex-direction: column;
        text-align: center;
    }
    
    .offering-card.highlight-card img {
        width: 100%;
        height: auto;
    }
    
    .floating-stat-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .masthead-nav {
        display: none; /* Simplification for mobile */
    }
    .hero-action-cluster {
        flex-direction: column;
    }
    .basement-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
