/* ====================================
   HausKloud Website - Main Styles
   ==================================== */

/* CSS Variables - Haus Brand Colors */
:root {
    --primary: #c9a227;
    --primary-light: #d4b84a;
    --primary-dark: #a8871f;
    --accent-green: #00ff88;
    --accent-pink: #ff66cc;
    --accent-cyan: #66ccff;
    --accent-gold: #c9a227;
    --accent-gold-light: #d4b84a;
    --accent-beige: #d4c4a8;
    --accent-beige-dark: #b8a88c;
    --warning: #ff6b6b;
    --bg-dark: #0a2e2e;
    --bg-darker: #061e1e;
    --bg-mid: #0d3d3d;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-beige: #d4c4a8;
    --text-primary: #ffffff;
    --text-secondary: #a8c4c4;
    --text-muted: #6a9090;
    --text-on-beige: #0d3d3d;
    --border-subtle: rgba(201, 162, 39, 0.2);
    --glow-blue: rgba(77, 166, 255, 0.4);
    --glow-green: rgba(0, 255, 136, 0.4);
    --glow-gold: rgba(201, 162, 39, 0.4);

    /* Corner ornament SVG - HausKloud house with extended soft vines */
    --corner-ornament: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3C!-- Main L frame --%3E%3Cpath d='M2 54 L2 2 L54 2' fill='none' stroke='%23c9a227' stroke-width='1.5'/%3E%3C!-- House - peak pointing to corner --%3E%3Cpath d='M6 6 L6 26 L16 26 L16 16 L26 16 L26 6 Z' fill='none' stroke='%23c9a227' stroke-width='1.25' opacity='0.75'/%3E%3C!-- Inner house detail --%3E%3Cpath d='M10 10 L10 20 L20 20 L20 10 Z' fill='none' stroke='%23c9a227' stroke-width='1' opacity='0.5'/%3E%3C!-- Vine extending down left edge - past bracket --%3E%3Cpath d='M2 30 Q8 34 4 40 Q0 46 6 52 Q10 56 4 62 Q0 66 4 70' fill='none' stroke='%23c9a227' stroke-width='1' opacity='0.6'/%3E%3C!-- Vine leaves/curls on left --%3E%3Cpath d='M4 36 Q8 34 6 38' fill='none' stroke='%23c9a227' stroke-width='0.75' opacity='0.4'/%3E%3Cpath d='M4 48 Q0 46 2 50' fill='none' stroke='%23c9a227' stroke-width='0.75' opacity='0.4'/%3E%3Cpath d='M6 60 Q10 58 8 62' fill='none' stroke='%23c9a227' stroke-width='0.75' opacity='0.4'/%3E%3C!-- Vine extending right along top edge - past bracket --%3E%3Cpath d='M30 2 Q34 8 40 4 Q46 0 52 6 Q56 10 62 4 Q66 0 70 4' fill='none' stroke='%23c9a227' stroke-width='1' opacity='0.6'/%3E%3C!-- Vine leaves/curls on top --%3E%3Cpath d='M36 4 Q34 8 38 6' fill='none' stroke='%23c9a227' stroke-width='0.75' opacity='0.4'/%3E%3Cpath d='M48 4 Q46 0 50 2' fill='none' stroke='%23c9a227' stroke-width='0.75' opacity='0.4'/%3E%3Cpath d='M60 6 Q58 10 62 8' fill='none' stroke='%23c9a227' stroke-width='0.75' opacity='0.4'/%3E%3C/svg%3E");
}

/* ====================================
   Ornate Corner System
   ==================================== */
.ornate-corners {
    position: relative;
    border-radius: 0 !important;
    overflow: visible;
}

/* Top-left corner */
.ornate-corners::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 72px;
    height: 72px;
    background-image: var(--corner-ornament);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Bottom-right corner */
.ornate-corners::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 72px;
    height: 72px;
    background-image: var(--corner-ornament);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: rotate(180deg);
}

.ornate-corners:hover::before,
.ornate-corners:hover::after {
    opacity: 1;
}

/* Full 4-corner version - add inner wrapper with class="ornate-inner" */
.ornate-corners .ornate-inner {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ornate-corners .ornate-inner::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 72px;
    height: 72px;
    background-image: var(--corner-ornament);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.9;
    transform: scaleX(-1);
    transition: opacity 0.3s ease;
}

.ornate-corners .ornate-inner::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -8px;
    width: 72px;
    height: 72px;
    background-image: var(--corner-ornament);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.9;
    transform: scaleY(-1);
    transition: opacity 0.3s ease;
}

.ornate-corners:hover .ornate-inner::before,
.ornate-corners:hover .ornate-inner::after {
    opacity: 1;
}

/* Lightweight filigree variant - whispers, doesn't sing */
.ornate-corners-light {
    position: relative;
    border-radius: 0 !important;
    overflow: visible;
}

.ornate-corners-light::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 56px;
    height: 56px;
    background-image: var(--corner-ornament);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.5;
}

.ornate-corners-light::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 56px;
    height: 56px;
    background-image: var(--corner-ornament);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.5;
    transform: rotate(180deg);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: -0.02em;
}

.gradient-text {
    color: var(--accent-gold);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(8, 18, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo span {
    font-weight: 600;
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--accent-gold);
    color: var(--bg-dark) !important;
    padding: 10px 20px;
    border-radius: 0;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--accent-gold-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px var(--glow-gold);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-gold);
}

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

.btn-secondary:hover {
    background: rgba(201, 162, 39, 0.1);
    border-color: var(--accent-gold-light);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 200;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-qualifier {
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 40px;
    padding: 16px 24px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 0;
    display: inline-block;
}

/* ====================================
   ICP Section - Exclusionary
   ==================================== */
.icp-section {
    padding: 60px 0 80px;
    background: var(--bg-darker);
}

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

.icp-card {
    padding: 32px;
    border-radius: 0;
}

.icp-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.icp-card ul {
    list-style: none;
}

.icp-card li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
    line-height: 1.5;
}

.icp-card li:last-child {
    border-bottom: none;
}

.icp-card li strong {
    color: var(--text-primary);
}

.icp-yes {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.25);
}

.icp-yes h3 {
    color: var(--accent-green);
}

.icp-no {
    background: rgba(255, 107, 107, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.25);
}

.icp-no h3 {
    color: var(--warning);
}

.icp-no li {
    color: var(--text-muted);
}

/* ====================================
   Credentials Section
   ==================================== */
.credentials-section {
    padding: 50px 0 30px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.credentials-headline {
    font-size: 3.0rem;
    font-weight: 300;
    color: var(--accent-gold-light);
    text-align: center;
    margin-bottom: 24px;
}

.credentials-section .container {
    display: inline-block;
    max-width: 700px;
    background: rgba(201, 162, 39, 0.03);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 0;
    padding: 24px 40px;
    position: relative;
    overflow: visible;
}

.credentials-watermark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.credentials-watermark::before {
    content: '';
    position: absolute;
    top: 97%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 960px;
    height: 960px;
    background-image: url('../images/HausKloud_Logo_v4_100925.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
}

.credentials-text {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 450;
    line-height: 1.7;
    text-align: center;
    margin: 0 0 12px 0;
}

.credentials-text:last-child {
    margin-bottom: 0;
}

/* ====================================
   Problem Section - Make It Hurt
   ==================================== */
.problem-section {
    padding: 100px 0;
    background: transparent;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.problem-source {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.problem-source a {
    color: var(--text-muted);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

.problem-source a:hover {
    color: var(--text-secondary);
}

.problem-stat {
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
}

.problem-stat .stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 200;
    color: var(--warning);
    margin-bottom: 12px;
}

.problem-stat p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.problem-stat strong {
    color: var(--text-primary);
}

.consequence-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.25);
    border-radius: 0;
}

.consequence-block h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--warning);
    margin-bottom: 16px;
}

.consequence-block p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.consequence-block p:last-child {
    margin-bottom: 0;
}

.consequence-kicker {
    font-size: 1.2rem !important;
    font-weight: 500;
    color: var(--text-primary) !important;
}

/* Verdict - The Knife Twist */
.verdict-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--warning);
    text-align: center;
    margin-top: 40px;
    margin-bottom: -30px;
}

.verdict {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-primary);
    text-align: center;
    margin-top: 40px;
    padding: 24px;
    background: rgba(255, 107, 107, 0.08);
    border: 2px solid rgba(255, 107, 107, 0.4);
    border-radius: 0;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.pipeline-preview {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0.6;
}

.preview-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.preview-node span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sd-card-icon {
    width: 40px;
    height: 50px;
    filter: drop-shadow(0 0 10px var(--glow-blue));
}

.preview-pipeline {
    width: 200px;
    height: 20px;
    position: relative;
}

.pipeline-line {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 6px var(--primary));
}

.pipeline-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    top: 5px;
    animation: particleFlow 2s linear infinite;
    box-shadow: 0 0 10px var(--primary);
}

.pipeline-particle.delay-1 {
    animation-delay: 0.6s;
}

.pipeline-particle.delay-2 {
    animation-delay: 1.2s;
}

@keyframes particleFlow {
    0% { left: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 190px; opacity: 0; }
}

.cloud-icon {
    width: 60px;
    height: 40px;
    background: var(--primary);
    border-radius: 0;
    position: relative;
}

/* ====================================
   Problem/Solution Section
   ==================================== */
.problem-solution {
    background: transparent;
}

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

.comparison-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.comparison-card:hover {
    transform: translateY(-4px);
}

.comparison-card.problem {
    border-color: rgba(255, 107, 107, 0.3);
}

.comparison-card.problem:hover {
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.1);
}

.comparison-card.solution {
    border-color: rgba(77, 166, 255, 0.3);
}

.comparison-card.solution:hover {
    box-shadow: 0 20px 60px var(--glow-blue);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.problem-icon {
    background: rgba(255, 107, 107, 0.2);
    color: var(--warning);
}

.solution-icon {
    background: rgba(77, 166, 255, 0.2);
    color: var(--primary);
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 400;
}

.comparison-list {
    list-style: none;
    margin-bottom: 30px;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.list-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.list-icon.negative {
    background: rgba(255, 107, 107, 0.2);
    color: var(--warning);
}

.list-icon.positive {
    background: rgba(0, 255, 136, 0.2);
    color: var(--accent-green);
}

.cost-example {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0;
}

.cost-label {
    color: var(--text-secondary);
}

.cost-value {
    font-size: 1.8rem;
    font-weight: 300;
}

.problem-value {
    color: var(--warning);
}

.solution-value {
    color: var(--accent-green);
}

/* ====================================
   Orchestration Section
   ==================================== */
.orchestration {
    background: transparent;
    overflow: hidden;
}

.orchestration-container {
    position: relative;
}

.orchestration-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 40px 0;
    flex-wrap: wrap;
}

.orch-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
}

.node-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.node-sublabel {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.orch-pipeline {
    position: relative;
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
}

.pipeline-svg {
    width: 100%;
    height: 20px;
}

.pipeline-glow {
    filter: drop-shadow(0 0 6px var(--primary));
    animation: pipelineGlow 3s ease-in-out infinite alternate;
}

.pipeline-glow.pink {
    stroke: var(--accent-pink);
    filter: drop-shadow(0 0 6px var(--accent-pink));
}

.pipeline-glow.cyan {
    stroke: var(--accent-cyan);
    filter: drop-shadow(0 0 6px var(--accent-cyan));
}

@keyframes pipelineGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* SD Card Icon Large */
.sd-icon-large {
    width: 60px;
    height: 75px;
    filter: drop-shadow(0 4px 20px var(--glow-blue));
    animation: sdFloat 4s ease-in-out infinite;
}

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

/* Storage Cube */
.storage-cube {
    width: 60px;
    height: 60px;
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(200px) rotateX(-15deg) rotateY(-15deg);
    animation: cubeFloat 6s ease-in-out infinite;
}

@keyframes cubeFloat {
    0%, 100% { transform: perspective(200px) rotateX(-15deg) rotateY(-15deg); }
    50% { transform: perspective(200px) rotateX(-10deg) rotateY(-20deg) translateY(-3px); }
}

.cube-face {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary);
    background: rgba(77, 166, 255, 0.1);
}

.cube-face.front {
    transform: translateZ(30px);
}

.cube-face.top {
    height: 30px;
    transform: rotateX(90deg) translateZ(30px);
    background: rgba(77, 166, 255, 0.2);
}

.cube-face.right {
    width: 30px;
    transform: rotateY(90deg) translateZ(45px);
    background: rgba(77, 166, 255, 0.05);
}

.warm-cube .cube-face {
    border-color: var(--accent-pink);
    background: rgba(255, 102, 204, 0.1);
}

.warm-cube .cube-face.top {
    background: rgba(255, 102, 204, 0.2);
}

/* Tape Archive */
.tape-archive {
    width: 80px;
    height: 50px;
    background: #141414;
    border: 2px solid var(--accent-cyan);
    border-radius: 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(102, 204, 255, 0.2);
}

.tape-reel {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    animation: reelSpin 3s linear infinite;
}

.tape-reel.left {
    left: 8px;
}

.tape-reel.right {
    right: 8px;
    animation-direction: reverse;
}

@keyframes reelSpin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Flow Particles */
.flow-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    animation: flowParticle 2s linear infinite;
    box-shadow: 0 0 10px var(--primary);
}

.flow-particle.pink {
    background: var(--accent-pink);
    box-shadow: 0 0 10px var(--accent-pink);
}

.flow-particle.cyan {
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
}

@keyframes flowParticle {
    0% { left: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 112px; opacity: 0; }
}

/* Orchestration Stats */
.orch-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.orch-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 20px 30px;
    text-align: center;
}

.orch-stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.orch-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ====================================
   Calculator Section
   ==================================== */
.calculator-section {
    background: transparent;
}

.calculator-embed {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 40px;
}

.calc-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.calc-input-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-input-group input[type="range"] {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    margin-bottom: 10px;
}

.calc-input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--glow-gold);
}

.range-display {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-beige);
}

.calc-input-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
}

.calc-input-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* Calculator Results */
.calc-results {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.calc-result {
    text-align: center;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0;
    min-width: 180px;
}

.calc-result.current {
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.calc-result.hauskloud {
    border: 1px solid rgba(201, 162, 39, 0.4);
}

.result-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.result-value {
    font-size: 2rem;
    font-weight: 300;
}

.calc-result.current .result-value {
    color: var(--warning);
}

.calc-result.hauskloud .result-value {
    color: var(--accent-gold);
}

.calc-vs {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.calc-savings {
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 0;
    padding: 20px 40px;
    text-align: center;
}

.savings-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.savings-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-green);
}

.savings-percent {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-green);
    margin-top: 4px;
}

.full-calc-link {
    display: block;
    text-align: center;
    margin-top: 20px;
}

/* Calculator Diagnosis Framing */
.calc-type-label {
    display: inline-block;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    color: var(--accent-gold);
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 16px 40px;
    border-radius: 0;
    margin-bottom: 24px;
}

.calc-diagnosis {
    text-align: center;
    margin-bottom: 40px;
}

.calc-setup {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.calc-consequence {
    margin-top: 30px;
    padding: 30px;
    background: rgba(201, 162, 39, 0.06);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 0;
    text-align: center;
}

.calc-savings-display {
    margin-bottom: 20px;
}

.calc-savings-display .savings-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.calc-savings-display .savings-value {
    display: block;
    font-size: 3rem;
    font-weight: 200;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.calc-savings-display .savings-percent {
    display: block;
    font-size: 1rem;
    color: var(--accent-gold);
}

.calc-consequence-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.calc-time-pressure {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--warning);
    margin-top: 16px;
    margin-bottom: 0;
}

.calc-inevitability {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 12px;
    font-style: italic;
}

/* Competitive messaging (when current setup is cheaper) */
.calc-competitive .competitive-label {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.calc-competitive .competitive-value {
    color: var(--text-primary) !important;
}

.calc-competitive-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 16px;
    font-style: italic;
}

.calc-competitive-pivot {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 12px;
    font-weight: 500;
}

.calc-cta {
    text-align: center;
    margin-top: 40px;
}

/* ====================================
   Benefits Section
   ==================================== */
.benefits {
    background: transparent;
}

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

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.1);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 12px;
}

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

/* ====================================
   Social Proof Section
   ==================================== */
.social-proof {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.proof-stat {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 3rem;
    font-weight: 200;
    color: var(--accent-beige);
    margin-bottom: 8px;
}

.proof-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ====================================
   Final CTA Section
   ==================================== */
.final-cta {
    background: transparent;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-duration {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-top: -24px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.cta-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cta-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
}

.cta-contact p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cta-contact a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.2s;
}

.cta-contact a:hover {
    color: var(--accent-gold-light);
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.footer-brand-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
    max-width: 300px;
}

.footer-logo {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}

.footer-logo strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 30px;
}

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

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ====================================
   Scarcity Banner
   ==================================== */
.scarcity-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 0;
    padding: 12px 24px;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.scarcity-banner strong {
    color: var(--accent-gold);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.scarcity-reminder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 0;
    padding: 16px 24px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.scarcity-reminder strong {
    color: var(--accent-gold);
}

/* ====================================
   Cloud Stats Section
   ==================================== */
.cloud-stats {
    background: transparent;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 107, 0.3);
}

.stat-big {
    display: block;
    font-size: 3rem;
    font-weight: 200;
    color: var(--warning);
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cloud-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.fact-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0;
    padding: 24px;
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s, border-color 0.3s;
}

.fact-card:hover {
    transform: translateY(-4px);
}

.fact-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

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

.fact-card.problem {
    border-color: rgba(255, 107, 107, 0.3);
}

.fact-card.problem:hover {
    border-color: rgba(255, 107, 107, 0.5);
}

.fact-card.problem h3 {
    color: var(--warning);
}

.fact-card.neutral {
    border-color: rgba(255, 167, 38, 0.3);
}

.fact-card.neutral:hover {
    border-color: rgba(255, 167, 38, 0.5);
}

.fact-card.neutral h3 {
    color: #ffa726;
}

.fact-card.solution {
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.05);
}

.fact-card.solution:hover {
    border-color: rgba(0, 255, 136, 0.5);
}

.fact-card.solution h3 {
    color: var(--accent-green);
}

.fact-icon {
    color: var(--warning);
    flex-shrink: 0;
}

/* ====================================
   Lifecycle Section
   ==================================== */
.lifecycle-section {
    background: transparent;
}

.lifecycle-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    padding: 40px 0;
}

.lifecycle-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 30px;
}

.stage-icon {
    width: 70px;
    height: 70px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stage-icon:hover {
    transform: scale(1.05);
}

.stage-icon.field {
    background: rgba(0, 255, 136, 0.15);
    border: 2px solid rgba(0, 255, 136, 0.4);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.2);
}

.stage-icon.cloud {
    background: rgba(212, 196, 168, 0.15);
    border: 2px solid rgba(212, 196, 168, 0.4);
    box-shadow: 0 4px 20px rgba(212, 196, 168, 0.2);
}

.stage-icon.nas {
    background: rgba(255, 102, 204, 0.15);
    border: 2px solid rgba(255, 102, 204, 0.4);
    box-shadow: 0 4px 20px rgba(255, 102, 204, 0.2);
}

.stage-icon.lto {
    background: rgba(201, 162, 39, 0.15);
    border: 2px solid rgba(201, 162, 39, 0.4);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.2);
}

.lifecycle-stage h4 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.lifecycle-stage p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.lifecycle-arrow {
    color: var(--primary);
    font-size: 1.5rem;
    opacity: 0.6;
    transform: rotate(90deg);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.4; transform: rotate(90deg) translateX(0); }
    50% { opacity: 0.8; transform: rotate(90deg) translateX(5px); }
}

/* HausTracker Callout */
.haustracker-callout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 0;
    padding: 24px 30px;
    max-width: 700px;
    margin: 0 auto;
}

.haustracker-logo {
    flex-shrink: 0;
}

.haustracker-logo svg {
    display: block;
}

.haustracker-text h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 6px;
}

.haustracker-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.haustracker-text strong {
    color: var(--accent-gold);
}

/* ====================================
   Solution Section
   ==================================== */
.solution-section {
    padding: 100px 0;
    background: transparent;
}

.solution-section .lifecycle-flow {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.solution-section .lifecycle-stage {
    transition: all 0.3s ease;
    border-radius: 0;
    cursor: default;
}

.solution-section .lifecycle-stage:hover .stage-icon {
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.5), 0 0 50px rgba(201, 162, 39, 0.25);
}

.solution-section .lifecycle-stage:hover h4,
.solution-section .lifecycle-stage:hover p {
    color: var(--text-primary);
}

.solution-section .lifecycle-arrow {
    font-size: 1.5rem;
    color: var(--accent-gold);
    opacity: 0.6;
    transform: rotate(90deg);
    animation: arrowPulse 2s ease-in-out infinite;
    padding: 5px 0;
}

/* HausTracker Callout */
.haustracker-callout {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 700px;
    margin: 40px auto;
    padding: 24px 32px;
    background: rgba(13, 61, 61, 0.8);
    border: 1px solid var(--accent-gold);
    border-radius: 0;
}

.haustracker-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 0;
    flex-shrink: 0;
}

.haustracker-callout p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.haustracker-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.haustracker-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.haustracker-link:hover {
    color: var(--accent-gold-light);
}

@media (max-width: 600px) {
    .haustracker-callout {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .haustracker-logo {
        width: 100px;
        height: 100px;
    }
}

.solution-key-point {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 24px 32px;
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 0;
}

.solution-key-point p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.solution-key-point strong {
    color: var(--accent-gold);
}

.solution-clarifier {
    margin-top: 16px;
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-primary);
}

.solution-sequence {
    margin-top: 12px;
    font-size: 0.95rem;
    color: var(--accent-gold);
    font-style: italic;
}

/* ====================================
   Why Section - 4 Cards
   ==================================== */
.why-section {
    padding: 100px 0;
    background: transparent;
}

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

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 32px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.why-number {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.why-consequence {
    margin-top: 12px !important;
    font-weight: 500;
    color: var(--warning) !important;
    font-size: 0.9rem !important;
}

/* ====================================
   Scarcity Section - Make It Real
   ==================================== */
.scarcity-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.scarcity-block {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 0;
}

.scarcity-block h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.scarcity-block p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.scarcity-block strong {
    color: var(--accent-gold);
}

.scarcity-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.95rem;
}

.scarcity-emphasis {
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 16px;
    font-size: 1.1rem;
}

/* ====================================
   Why Lifecycle / 12 Reasons Section
   ==================================== */
.why-lifecycle {
    background: transparent;
}

.reasons-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.reason-card {
    width: 100%;
    background: var(--bg-mid);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 20px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    margin-top: -55px;
    z-index: 1;
}

.reason-card:first-child {
    margin-top: 0;
}

/* Staggered z-index for stacking effect */
.reason-card:nth-child(1) { z-index: 12; }
.reason-card:nth-child(2) { z-index: 11; }
.reason-card:nth-child(3) { z-index: 10; }
.reason-card:nth-child(4) { z-index: 9; }
.reason-card:nth-child(5) { z-index: 8; }
.reason-card:nth-child(6) { z-index: 7; }
.reason-card:nth-child(7) { z-index: 6; }
.reason-card:nth-child(8) { z-index: 5; }
.reason-card:nth-child(9) { z-index: 4; }
.reason-card:nth-child(10) { z-index: 3; }
.reason-card:nth-child(11) { z-index: 2; }
.reason-card:nth-child(12) { z-index: 1; }

/* Hover: glow and grow effect + spread apart */
.reason-card:hover {
    transform: scale(1.03);
    border-color: rgba(201, 162, 39, 0.5);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.3), 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 20 !important;
    background: var(--bg-mid);
    margin-top: 16px;
    margin-bottom: 16px;
}

.reason-card:first-child:hover {
    margin-top: 0;
}

/* Card after hovered card clears the overlap */
.reason-card:hover + .reason-card {
    margin-top: 16px;
}

/* Active/Expanded state */
.reason-card.expanded {
    margin-top: 20px;
    margin-bottom: 20px;
    transform: scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 0 40px rgba(201, 162, 39, 0.4), 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 30 !important;
    background: var(--bg-mid);
}

.reason-card.expanded:first-child {
    margin-top: 0;
}

/* Card after expanded card clears the overlap */
.reason-card.expanded + .reason-card {
    margin-top: 20px;
}

/* Collapsed cards get dimmed when one is expanded */
.reasons-stack.has-expanded .reason-card:not(.expanded) {
    opacity: 0.7;
    filter: brightness(0.85);
}

.reasons-stack.has-expanded .reason-card:not(.expanded):hover {
    opacity: 1;
    filter: brightness(1);
}

.reason-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reason-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.reason-card:hover .reason-number,
.reason-card.expanded .reason-number {
    background: rgba(201, 162, 39, 0.25);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.3);
}

.reason-card h4 {
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0;
    color: var(--text-primary);
    flex: 1;
    transition: color 0.3s ease;
}

.reason-card:hover h4,
.reason-card.expanded h4 {
    color: var(--accent-gold-light);
}

.reason-expand-icon {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.reason-card:hover .reason-expand-icon {
    color: var(--accent-gold);
}

.reason-card.expanded .reason-expand-icon {
    transform: rotate(180deg);
    color: var(--accent-gold);
}

.reason-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    padding-left: 52px;
}

.reason-card.expanded p {
    max-height: 300px;
    opacity: 1;
    margin-top: 16px;
    padding-bottom: 4px;
}

/* Read More CTA */
.reason-read-more {
    position: absolute;
    bottom: 12px;
    right: 20px;
    font-size: 0.8rem;
    color: var(--accent-gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reason-read-more svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.reason-card:hover .reason-read-more {
    opacity: 1;
    transform: translateX(0);
}

.reason-card:hover .reason-read-more svg {
    transform: translateX(3px);
}

/* Hide Read More when expanded */
.reason-card.expanded .reason-read-more {
    opacity: 0 !important;
    transform: translateX(-10px);
}

/* ====================================
   Advantage Section
   ==================================== */
.advantage-section {
    background: transparent;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 30px 24px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.advantage-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.3);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.advantage-icon.money {
    background: rgba(0, 255, 136, 0.15);
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.advantage-icon.service {
    background: rgba(212, 196, 168, 0.15);
    border: 2px solid rgba(212, 196, 168, 0.4);
}

.advantage-icon.efficiency {
    background: rgba(201, 162, 39, 0.15);
    border: 2px solid rgba(201, 162, 39, 0.3);
}

.advantage-icon.flexibility {
    background: rgba(255, 102, 204, 0.15);
    border: 2px solid rgba(255, 102, 204, 0.3);
}

.advantage-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ====================================
   TCO Section
   ==================================== */
.tco-section {
    background: transparent;
}

.tco-comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.tco-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
}

.tco-card:hover {
    transform: translateY(-4px);
}

.tco-card.aws {
    border-color: rgba(255, 107, 107, 0.3);
}

.tco-card.aws:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.1);
}

.tco-card.b2 {
    border-color: rgba(255, 167, 38, 0.3);
}

.tco-card.b2:hover {
    box-shadow: 0 15px 40px rgba(255, 167, 38, 0.1);
}

.tco-card.hauskloud {
    border-color: rgba(0, 255, 136, 0.4);
    background: rgba(0, 255, 136, 0.06);
}

.tco-card.hauskloud:hover {
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.15);
}

.tco-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: var(--bg-dark);
    padding: 6px 16px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tco-card h4 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.tco-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 200;
    margin-bottom: 8px;
}

.tco-card.aws .tco-amount {
    color: var(--warning);
}

.tco-card.b2 .tco-amount {
    color: #ffa726;
}

.tco-card.hauskloud .tco-amount {
    color: var(--accent-green);
}

.tco-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.tco-savings {
    display: inline-block;
    background: rgba(0, 255, 136, 0.15);
    color: var(--accent-green);
    padding: 8px 16px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 16px;
}

.tco-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.5;
}

.tco-card.competitor .tco-amount {
    color: var(--warning);
}

.tco-footnote {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 30px;
    font-style: italic;
}

/* ====================================
   Pricing Section
   ==================================== */
.pricing-section {
    background: transparent;
}

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.pricing-card.featured {
    border-color: var(--accent-gold);
    background: rgba(201, 162, 39, 0.06);
}

.pricing-card.featured:hover {
    box-shadow: 0 20px 60px var(--glow-gold);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--bg-dark);
    padding: 8px 20px;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.pricing-card > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-amount {
    font-size: 2.8rem;
    font-weight: 200;
    color: var(--accent-beige);
    margin-bottom: 8px;
}

.pricing-card.featured .pricing-amount {
    color: var(--accent-gold);
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-tiers {
    margin-bottom: 30px;
}

.tier-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.tier-option:last-child {
    margin-bottom: 0;
}

.tier-option span:last-child {
    color: var(--accent-green);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-features li svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
}

.pricing-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-annual {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.pricing-total {
    font-size: 0.9rem;
    color: var(--accent-green);
    font-weight: 500;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(0, 255, 136, 0.08);
    border-radius: 0;
}

.tier-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 16px 0;
}

.pricing-tiers .tier-option {
    padding: 16px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0;
    margin-bottom: 0;
}

.pricing-tiers .tier-option .tier-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.pricing-tiers .tier-option .pricing-amount {
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.pricing-tiers .tier-option .pricing-annual {
    margin-bottom: 0;
    font-size: 0.8rem;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-projection {
    font-size: 0.9rem;
    color: var(--accent-green);
    font-weight: 500;
    margin-bottom: 24px;
    padding: 12px;
    background: rgba(0, 255, 136, 0.08);
    border-radius: 0;
}

.pricing-footnote {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 40px;
}

.pricing-footnote a {
    color: var(--accent-gold);
    text-decoration: none;
}

.pricing-footnote a:hover {
    text-decoration: underline;
}

.pricing-fit-check {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-style: italic;
}

/* Simplified 2-column pricing */
.pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
}

.pricing-card .pricing-amount {
    font-size: 2.5rem;
}

.pricing-card .pricing-amount span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ====================================
   Contact Section
   ==================================== */
.contact-section {
    background: rgba(201, 162, 39, 0.04);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 500px;
    margin: 0 auto 40px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.4);
}

.contact-card svg {
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.contact-card h4 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.contact-card a {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 300;
    transition: color 0.2s;
}

.contact-card a:hover {
    color: var(--accent-gold-light);
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.contact-value {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    display: block;
    transition: color 0.2s;
}

.contact-value:hover {
    color: var(--accent-gold-light);
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calc-inputs {
        grid-template-columns: 1fr;
    }

    .orchestration-flow {
        flex-direction: column;
    }

    .orch-pipeline {
        transform: rotate(90deg);
        margin: -10px 0;
    }

    /* ICP section tablet */
    .icp-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    /* Problem section tablet */
    .problem-stats {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Why section tablet */
    .why-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    /* TCO section tablet */
    .tco-comparison {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    /* Pricing section tablet */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    /* Lifecycle flow tablet */
    .solution-section .lifecycle-stage:hover {
        box-shadow: none;
        background: transparent;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero {
        min-height: 70vh;
        padding: 120px 24px 60px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    /* ICP mobile */
    .icp-section {
        padding: 40px 0 60px;
    }

    .icp-card {
        padding: 24px;
    }

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

    .icp-card li {
        font-size: 0.9rem;
    }

    /* Problem mobile */
    .problem-stat .stat-number {
        font-size: 2.8rem;
    }

    .consequence-block {
        padding: 24px;
    }

    .consequence-kicker {
        font-size: 1.1rem !important;
    }

    /* Calculator mobile */
    .calc-results {
        flex-direction: column;
        gap: 16px;
    }

    .calc-savings-display .savings-value {
        font-size: 2.5rem;
    }

    /* Why section mobile */
    .why-card {
        padding: 24px;
    }

    .why-card h3 {
        font-size: 1.05rem;
    }

    /* TCO mobile */
    .tco-amount {
        font-size: 2rem;
    }

    /* Pricing mobile */
    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-card .pricing-amount {
        font-size: 2rem;
    }

    /* Scarcity mobile */
    .scarcity-block {
        padding: 24px;
    }

    .scarcity-block h3 {
        font-size: 1.1rem;
    }

    .scarcity-status {
        flex-direction: column;
        gap: 8px;
    }

    /* CTA mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav-links {
        display: none;
    }
}

/* ====================================
   Demo Modal
   ==================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 13, 24, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-mid);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(201, 162, 39, 0.1);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group label .optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-form .btn {
    margin-top: 10px;
}

/* Success State */
.modal-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.modal-success.show {
    display: block;
}

.modal-form.hidden {
    display: none;
}

.success-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 136, 0.15);
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-green);
    margin: 0 auto 20px;
}

.modal-success h4 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.modal-success p {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .modal {
        padding: 30px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-header h3 {
        font-size: 1.5rem;
    }
}

/* ====================================
   HausTracker Page Styles
   ==================================== */
.haustracker-hero {
    min-height: 70vh;
}

.haustracker-hero-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 0;
    margin-bottom: 30px;
}

.hero-eyebrow {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

/* Lifecycle Tracking */
.lifecycle-tracking {
    max-width: 700px;
    margin: 50px auto 0;
}

.tracking-stage {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.tracking-stage:last-child {
    border-bottom: none;
}

.tracking-stage .stage-icon {
    flex-shrink: 0;
}

.tracking-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.tracking-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Metadata Section */
.metadata-section {
    background: var(--bg-darker);
}

.metadata-examples {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.metadata-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 24px;
}

.metadata-card h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.metadata-card.custom {
    border-color: rgba(201, 162, 39, 0.3);
    background: rgba(201, 162, 39, 0.05);
}

.metadata-card.custom h4 {
    color: var(--accent-gold);
}

.metadata-card.custom p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.field-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.field-tags span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 6px 10px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Interface Section */
.interface-section {
    background: transparent;
}

.interface-intro {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 0;
}

.interface-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 0;
    flex-shrink: 0;
}

.interface-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.interface-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .metadata-examples {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .metadata-examples {
        grid-template-columns: 1fr;
    }

    .interface-intro {
        flex-direction: column;
        text-align: center;
    }

    .tracking-stage {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Problem Grid - HausTracker Page */
.problem-section .problem-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    margin-top: 50px !important;
}

.problem-section .problem-grid .problem-card {
    background: var(--bg-card) !important;
    border: 1px solid rgba(255, 107, 107, 0.25) !important;
    border-radius: 0 !important;
    padding: 30px !important;
    text-align: center !important;
}

.problem-section .problem-grid .problem-card .problem-icon {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 107, 107, 0.15) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    color: var(--warning) !important;
    margin: 0 auto 20px !important;
    font-weight: 600;
}

.problem-section .problem-grid .problem-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.problem-section .problem-grid .problem-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 32px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-number {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 12px;
}

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

.feature-example {
    margin-top: 20px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0;
    text-align: center;
}

.feature-example code {
    display: block;
    font-size: 1.3rem;
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    color: var(--accent-gold);
    margin-bottom: 6px;
}

.feature-example span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.feature-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.feature-fields span,
.feature-benefits span {
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 0;
    padding: 6px 12px;
    font-size: 0.8rem;
    color: var(--accent-gold-light);
}

.feature-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 28px;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--bg-dark);
    margin: 0 auto 16px;
}

.step-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Service Section */
.service-section {
    background: var(--bg-darker);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 24px;
    transition: border-color 0.3s;
}

.service-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
}

.service-card h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Workflow Section */
.workflow-section {
    background: transparent;
}

.workflow-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.workflow-step {
    text-align: center;
    max-width: 200px;
}

.workflow-stage {
    width: 80px;
    height: 80px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.workflow-stage.field {
    background: rgba(0, 255, 136, 0.15);
    border: 2px solid rgba(0, 255, 136, 0.4);
    color: var(--accent-green);
}

.workflow-stage.cloud {
    background: rgba(212, 196, 168, 0.15);
    border: 2px solid rgba(212, 196, 168, 0.4);
    color: var(--accent-beige);
}

.workflow-stage.nas {
    background: rgba(255, 102, 204, 0.15);
    border: 2px solid rgba(255, 102, 204, 0.4);
    color: var(--accent-pink);
}

.workflow-stage.lto {
    background: rgba(201, 162, 39, 0.15);
    border: 2px solid rgba(201, 162, 39, 0.4);
    color: var(--accent-gold);
}

.workflow-step h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.workflow-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.workflow-arrow {
    font-size: 1.5rem;
    color: var(--accent-gold);
    opacity: 0.5;
    margin-top: 30px;
}

/* Result Section */
.result-section {
    background: var(--bg-darker);
}

.result-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 0;
}

.result-block h2 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.result-main {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.result-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.cta-back {
    margin-top: 30px;
}

.cta-back a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.cta-back a:hover {
    color: var(--accent-gold);
}

/* Integrations Section */
.integrations-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.integrations-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 100px;
}

.integration-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: all 0.2s ease;
}

.integration-item:hover .integration-icon {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.integration-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* HausTracker Page Responsive */
@media (max-width: 1200px) {
    .problem-section .problem-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .problem-section .problem-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .integrations-grid {
        gap: 24px;
    }

    .integration-item {
        min-width: 80px;
    }

    .integration-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 1024px) {

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-visual {
        flex-direction: column;
        align-items: center;
    }

    .workflow-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}
