/* 
  Strict Industrial Theme
  B2B Real Estate / Logistics
*/
:root {
    --c-bg: #ffffff;
    --c-bg-alt: #f4f4f5;
    --c-text: #18181b;
    --c-text-muted: #52525b;
    --c-accent: #ea580c; /* Industrial Orange */
    --c-accent-hover: #c2410c;
    --c-border: #e4e4e7;
    --c-border-dark: #d4d4d8;
    
    --f-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --s-content: 1100px;
}

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

body {
    font-family: var(--f-main);
    color: var(--c-text);
    background-color: var(--c-bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--s-content);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
    border-bottom: 1px solid var(--c-border);
}

section.bg-alt {
    background-color: var(--c-bg-alt);
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    color: var(--c-text);
}

p, li {
    font-size: 16px;
    color: var(--c-text);
}

a {
    color: var(--c-accent);
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background-color: var(--c-accent);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
}

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

.btn-secondary {
    background-color: var(--c-bg);
    color: var(--c-text);
    border: 1px solid var(--c-border-dark);
}

.btn-secondary:hover {
    background-color: var(--c-bg-alt);
}

/* Header */
.header {
    background-color: var(--c-text);
    color: #fff;
    padding: 16px 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-title {
    font-weight: 600;
    font-size: 18px;
}
.header-contact {
    font-weight: 700;
    color: #fff;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--c-bg-alt);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-content .subtitle {
    font-size: 18px;
    color: var(--c-text-muted);
    margin-bottom: 24px;
}

.hero-facts {
    list-style: none;
    margin-bottom: 32px;
}

.hero-facts li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-weight: 500;
}

.hero-facts li::before {
    content: "■";
    color: var(--c-accent);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
}

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

.hero-image {
    width: 100%;
}
.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--c-border-dark);
}

/* Expected vs Reality */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.compare-col {
    background: #fff;
    border: 1px solid var(--c-border);
    padding: 32px;
    border-radius: 4px;
}

.compare-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--c-text-muted);
}

.compare-list {
    list-style: none;
}

.compare-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.icon-x, .icon-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 2px;
}

.icon-x {
    background: #fee2e2;
    color: #ef4444;
}

.icon-check {
    background: #dcfce7;
    color: #22c55e;
}

/* For Whom */
.for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.for-card {
    border: 1px solid var(--c-border);
    padding: 24px;
    background: #fff;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
}

/* Scheme / How it used */
.scheme-box {
    border: 2px solid var(--c-text);
    padding: 40px;
    border-radius: 4px;
    background: #fff;
}
.scheme-flex {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.scheme-row {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}
.scheme-item {
    flex: 1;
    border: 1px solid var(--c-border-dark);
    padding: 20px;
    text-align: center;
    font-weight: 600;
    background: var(--c-bg-alt);
    border-radius: 4px;
}
.scheme-arrow {
    font-size: 24px;
    color: var(--c-text-muted);
}

/* Inside Block */
.inside-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.inside-list {
    list-style: none;
}
.inside-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--c-border);
    display: flex;
    justify-content: space-between;
}
.inside-list li strong {
    font-weight: 600;
}

.inside-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.inside-gallery img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--c-border-dark);
}

th, td {
    padding: 16px;
    border: 1px solid var(--c-border);
    text-align: left;
}

th {
    background: var(--c-bg-alt);
    font-weight: 600;
}

/* Final CTA */
.final-cta {
    background-color: var(--c-text);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 32px;
}

.final-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-actions .btn {
    min-width: 200px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid, .compare-grid, .inside-layout {
        grid-template-columns: 1fr;
    }
    
    .scheme-row {
        flex-direction: column;
    }
    .scheme-arrow {
        transform: rotate(90deg);
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    table {
        min-width: 600px;
    }
}
