@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,500;8..60,600;8..60,700&display=swap');

:root {
    --ink: #0a1628;
    --ink-soft: #132238;
    --ink-muted: #1e3354;
    --steel: #4a5f7f;
    --silver: #8b9cb3;
    --line: #d8dee8;
    --line-soft: #e8edf3;
    --paper: #f4f6f9;
    --white: #ffffff;
    --gold: #b8955a;
    --gold-light: #d4bc8a;
    --accent: #2c4a72;
    --accent-deep: #1a3558;
    --aviation: #3d6b8c;
    --automotive: #7a6140;
    --radius: 4px;
    --radius-lg: 8px;
    --shadow: 0 24px 60px rgba(10, 22, 40, 0.12);
    --max: 1280px;
    --font-sans: 'Inter', 'Segoe UI', system-ui, sans-serif;
    --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--max), calc(100% - 3rem));
    margin: 0 auto;
}

.container-narrow {
    width: min(920px, calc(100% - 3rem));
    margin: 0 auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 82px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: var(--radius);
    background: var(--ink-soft);
    border: 1px solid rgba(184, 149, 90, 0.45);
    color: var(--gold-light);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    flex-shrink: 0;
}

.brand-text strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.2;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.brand-text span {
    display: block;
    font-size: 0.72rem;
    color: var(--silver);
    letter-spacing: 0.03em;
    margin-top: 0.15rem;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s ease;
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang-switch {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background-color: var(--ink-soft);
    color: var(--white);
    border-radius: var(--radius);
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    color-scheme: dark;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23d4bc8a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.65rem center;
}

.lang-switch:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(184, 149, 90, 0.25);
}

.lang-switch option {
    background-color: var(--ink);
    color: var(--white);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--radius);
    padding: 0.9rem 1.5rem;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--ink);
}

.btn-primary:hover {
    background: var(--gold-light);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-dark {
    background: var(--ink);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--ink-soft);
}

.btn-ghost-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0.7rem 1.1rem;
    font-size: 0.75rem;
}

.btn-ghost-light:hover {
    border-color: var(--gold);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.eyebrow.dark {
    color: var(--accent);
}

.section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.section-label.dark {
    color: var(--steel);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
    padding: 6.5rem 0 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 55%;
    height: 120%;
    background: radial-gradient(circle, rgba(44, 74, 114, 0.35) 0%, transparent 68%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: end;
    padding-bottom: 4rem;
}

.hero h1 {
    font-size: clamp(2.6rem, 4.8vw, 4.2rem);
    line-height: 1.08;
    margin: 0 0 1.35rem;
    max-width: 14ch;
}

.hero p.lead {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.76);
    max-width: 40rem;
    margin: 0 0 2rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 0;
}

.hero-panel {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.hero-panel h2 {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.product-preview {
    display: grid;
    gap: 1rem;
}

.preview-card {
    border-radius: var(--radius);
    padding: 1.35rem 1.35rem 1.35rem 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--gold);
}

.preview-card.flight {
    border-left-color: var(--aviation);
}

.preview-card.auto {
    border-left-color: var(--automotive);
}

.preview-card .division-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 0.45rem;
}

.preview-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color: var(--white);
}

.preview-card p {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Metrics strip */
.metrics-strip {
    position: relative;
    z-index: 1;
    background: var(--ink-soft);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-item {
    padding: 1.75rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-item:last-child {
    border-right: 0;
}

.metric-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.metric-item span {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--silver);
}

/* Sections */
section {
    padding: 5.5rem 0;
}

.section-head {
    max-width: 780px;
    margin: 0 auto 3rem;
}

.section-head.center {
    text-align: center;
}

.section-head h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    line-height: 1.15;
}

.section-head p {
    margin: 0;
    color: var(--steel);
    font-size: 1.05rem;
    line-height: 1.75;
}

.section-alt {
    background: var(--paper);
}

.section-dark {
    background: var(--ink);
    color: var(--white);
}

.section-dark .section-head p,
.section-dark p {
    color: rgba(255, 255, 255, 0.72);
}

.cards-3,
.cards-2,
.cards-4 {
    display: grid;
    gap: 1.5rem;
}

.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    border-color: #c5ceda;
    box-shadow: var(--shadow);
}

.card-number {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
}

.card p {
    margin: 0;
    color: var(--steel);
    font-size: 0.95rem;
    line-height: 1.7;
}

.card-dark {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.card-dark:hover {
    border-color: rgba(184, 149, 90, 0.35);
    box-shadow: none;
}

.card-dark h3 {
    color: var(--white);
}

.card-dark p {
    color: rgba(255, 255, 255, 0.68);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    margin-bottom: 1.25rem;
    border: 1px solid var(--line);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.card-icon.sky {
    border-color: rgba(61, 107, 140, 0.25);
    color: var(--aviation);
    background: rgba(61, 107, 140, 0.08);
}

.card-icon.amber {
    border-color: rgba(122, 97, 64, 0.25);
    color: var(--automotive);
    background: rgba(122, 97, 64, 0.08);
}

.card-icon.indigo {
    border-color: rgba(44, 74, 114, 0.25);
    color: var(--accent);
    background: rgba(44, 74, 114, 0.08);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.panel-dark {
    background: var(--ink-soft);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-dark h2,
.panel-dark h3 {
    color: var(--white);
    margin-top: 0;
}

.panel-dark p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.bullet-list li {
    position: relative;
    padding: 0.85rem 0 0.85rem 1.5rem;
    border-bottom: 1px solid var(--line-soft);
    color: var(--steel);
    font-size: 0.96rem;
}

.bullet-list li:last-child {
    border-bottom: 0;
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.15rem;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 1px;
}

.bullet-list.light li {
    color: rgba(255, 255, 255, 0.78);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* Global footprint */
.global-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: stretch;
}

.world-visual {
    position: relative;
    min-height: 360px;
    background:
        radial-gradient(circle at 30% 40%, rgba(44, 74, 114, 0.18), transparent 45%),
        radial-gradient(circle at 70% 55%, rgba(184, 149, 90, 0.12), transparent 40%),
        linear-gradient(180deg, var(--ink-soft), var(--ink));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.world-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
}

.world-visual svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
}

.world-node {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(184, 149, 90, 0.18);
}

.world-node.na { top: 34%; left: 22%; }
.world-node.la { top: 62%; left: 28%; }
.world-node.eu { top: 28%; left: 52%; }
.world-node.ap { top: 42%; left: 74%; }

.region-list {
    display: grid;
    gap: 1rem;
}

.region {
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.35rem 1.5rem;
}

.region strong {
    display: block;
    margin-bottom: 0.35rem;
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.region span {
    color: var(--steel);
    font-size: 0.92rem;
    line-height: 1.6;
}

.world-map {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

/* Capability band */
.capability-band {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.capability-item {
    background: var(--white);
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.capability-item strong {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.capability-item span {
    font-size: 0.82rem;
    color: var(--steel);
    line-height: 1.5;
}

/* CTA */
.cta-band {
    background: var(--ink);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-band h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.cta-band p {
    margin: 0.75rem 0 0;
    color: rgba(255, 255, 255, 0.72);
    max-width: 36rem;
    line-height: 1.7;
}

/* Page hero (inner pages) */
.page-hero {
    background: var(--ink);
    color: var(--white);
    padding: 5rem 0 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin: 0 0 1rem;
    max-width: 18ch;
}

.page-hero .lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.74);
    max-width: 44rem;
    margin: 0;
    line-height: 1.75;
}

/* Product pages */
.product-hero {
    padding: 4.5rem 0 2.5rem;
}

.product-hero.flight {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.product-hero.auto {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.product-block {
    display: grid;
    grid-template-columns: 0.35fr 0.65fr;
    gap: 3rem;
    align-items: start;
}

.product-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--steel);
}

.product-tag.sky { color: var(--aviation); }
.product-tag.amber { color: var(--automotive); }

.product-hero h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin: 0 0 1rem;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.stat-card strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.stat-card span {
    color: var(--steel);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
}

.contact-card,
.contact-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.contact-card h2,
.contact-form h2 {
    margin-top: 0;
}

.form-row {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.15rem;
}

.form-row label {
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--steel);
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    font: inherit;
    background: var(--paper);
    color: var(--ink);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-row textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.68);
    padding: 4rem 0 1.75rem;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-grid h4 {
    color: var(--white);
    margin: 0 0 1rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-grid li {
    margin-bottom: 0.55rem;
    font-size: 0.92rem;
}

.footer-grid a:hover {
    color: var(--gold-light);
}

.footer-brand-note {
    max-width: 22rem;
    line-height: 1.7;
    font-size: 0.92rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.48);
    letter-spacing: 0.03em;
}

/* Responsive */
@media (max-width: 1080px) {
    .metrics-grid,
    .capability-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metric-item:nth-child(2) {
        border-right: 0;
    }

    .capability-band {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .split-section,
    .contact-grid,
    .footer-grid,
    .global-grid,
    .product-block {
        grid-template-columns: 1fr;
    }

    .cards-3,
    .cards-4,
    .world-map,
    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .metric-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .metric-item:last-child {
        border-bottom: 0;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: var(--ink);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1.25rem 1.5rem;
    }

    .site-nav.open {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .container,
    .container-narrow {
        width: min(var(--max), calc(100% - 1.5rem));
    }

    .cards-2,
    .cards-3,
    .cards-4,
    .world-map,
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
    }

    section {
        padding: 4rem 0;
    }
}
