:root {
    /* Corporate Color Palette */
    --color-navy-900: #0f172a;
    /* Main Headings / Footer / Header */
    --color-navy-800: #1e293b;
    --color-slate-600: #475569;
    /* Body Text */
    --color-slate-100: #f1f5f9;
    /* Backgrounds / Sections */
    --color-slate-50: #f8fafc;
    --color-white: #ffffff;
    --color-primary: #0f172a;
    /* Primary Action */
    --color-border: #e2e8f0;

    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;

    --container-max: 1100px;
    /* Tighter, more document-like container */
    --spacing-section: 80px;
    --radius-sm: 4px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-slate-600);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-navy-900);
    line-height: 1.25;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

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

/* Header */
.header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--color-navy-900);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logo svg {
    width: 32px;
    height: auto;
    color: var(--color-navy-900);
    fill: currentColor;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-slate-600);
}

.header-link:hover {
    color: var(--color-navy-900);
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background-color: var(--color-slate-50);
    border-bottom: 1px solid var(--color-border);
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 24px;
    color: var(--color-navy-900);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-slate-600);
    max-width: 600px;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--color-navy-900);
    color: var(--color-white);
    font-weight: 500;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}

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

/* Standard Section */
.section {
    padding: var(--spacing-section) 0;
    border-bottom: 1px solid var(--color-border);
}

.section-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-slate-600);
    margin-bottom: 40px;
    font-weight: 600;
}

/* About / Content */
.content-text {
    max-width: 800px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-slate-600);
}

.content-text p {
    margin-bottom: 24px;
}

.content-text ul {
    margin-bottom: 24px;
}

.content-text li {
    margin-bottom: 12px;
}

.content-text h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--color-navy-900);
    margin-top: 40px;
}

/* Utilities */
.mb-8 {
    margin-bottom: 48px;
}

/* Business Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.activity-card {
    background: var(--color-slate-50);
    padding: 32px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
}

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

.activity-card p {
    font-size: 0.95rem;
    color: var(--color-slate-600);
}

/* Legal Table */
.legal-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    text-align: left;
}

.legal-table th,
.legal-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--color-border);
}

.legal-table th {
    background-color: var(--color-slate-50);
    color: var(--color-navy-900);
    font-weight: 600;
    width: 30%;
}

.legal-table tr:last-child td,
.legal-table tr:last-child th {
    border-bottom: none;
}

/* Verification Box */
.verification-box {
    background-color: #f8fafc;
    border-left: 4px solid var(--color-navy-900);
    padding: 32px;
    margin-top: 40px;
}

.verification-box p {
    margin-bottom: 16px;
    color: var(--color-navy-900);
    font-weight: 500;
}

.verification-box p:last-child {
    margin-bottom: 0;
    font-weight: 400;
    color: var(--color-slate-600);
}

/* Contact List */
.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--color-slate-600);
    font-weight: 600;
}

.contact-value {
    color: var(--color-navy-900);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Brand Ghost Logo */
.brand-logo-ghost {
    width: 64px;
    height: auto;
    color: var(--color-navy-900);
    margin-bottom: 24px;
    display: block;
}

/* Footer */
.footer {
    padding: 60px 0;
    background-color: var(--color-navy-900);
    color: var(--color-slate-100);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 24px;
    font-size: 1rem;
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.copyright {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .header-inner {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .section {
        padding: 60px 0;
    }

    .legal-table th,
    .legal-table td {
        display: block;
        width: 100%;
    }

    .legal-table th {
        background: transparent;
        padding-bottom: 4px;
        color: var(--color-slate-600);
        font-size: 0.85rem;
        text-transform: uppercase;
    }

    .legal-table td {
        padding-top: 0;
        font-weight: 500;
        color: var(--color-navy-900);
    }
}