/* Figma Header & Footer Styles */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@500;600;700;800&family=Inter:wght@400;600&display=swap');

html {
    overflow-x: hidden;
}
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ===== HEADER ===== */
.utl-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: auto;
    background:#202836;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.05);
}

.utl-header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 48px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.utl-logo {
    display: flex;
    align-items: flex-end;
    gap: 0;
    text-decoration: none;
}

.utl-logo img {
    height: 44px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
}

.utl-company-name {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #ffffff;
    letter-spacing: -0.6px;
    white-space: nowrap;
    line-height: 32px;
    padding-bottom: 4px;
}

.utl-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-bottom: 4px;
}

.utl-nav a {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #d7d7d7;
    text-decoration: none;
    letter-spacing: 0.28px;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.utl-nav a:hover {
    color: #ffffff;
}

/* ===== FOOTER ===== */
.utl-footer {
    background-color: #131c2b;
    width: 100%;
    display: block;
    clear: both;
    margin-top: 0;
    border-top: none;
}

.utl-footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 80px 48px 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.utl-footer-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.utl-footer-brand {
    flex: 0 0 355px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 24px;
}

.utl-footer-logo {
    display: flex;
    align-items: flex-end;
    gap: 0;
}

.utl-footer-logo img {
    height: 44px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
}

.utl-footer-company-name {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #ffffff;
    letter-spacing: -0.6px;
    white-space: nowrap;
    line-height: 32px;
    padding-bottom: 4px;
}

.utl-footer-brand p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #c8c8c8;
    line-height: 24px;
}

.utl-footer-col {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 20px;
}

.utl-footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0.7px;
    line-height: 20px;
}

.utl-footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.utl-footer-col ul li a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #c8c8c8;
    text-decoration: none;
    line-height: 24px;
    transition: color 0.2s ease;
    display: block;
}

.utl-footer-col ul li a:hover {
    color: #ffffff;
}

.utl-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.32);
    padding-top: 33px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.utl-footer-bottom > span {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #c8c8c8;
    letter-spacing: 0.48px;
    white-space: nowrap;
}

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

.utl-footer-links a {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #c8c8c8;
    text-decoration: none;
    letter-spacing: 0.48px;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.utl-footer-links a:hover {
    color: #ffffff;
}

/* ===== RESPONSIVE — LAYOUT ===== */

/* Compact footer grid at medium sizes */
@media (max-width: 1200px) {
    .utl-footer-inner { padding: 56px 48px 44px; }
    .utl-footer-grid { gap: 24px; }
    .utl-footer-brand { flex: 0 0 240px; }
    .utl-footer-col { flex: 1 0 0; min-width: 100px; }
}

@media (max-width: 900px) {
    /* Header */
    .utl-header-inner { padding: 12px 24px; }
    .utl-nav { gap: 16px; }
    .utl-nav a { font-size: 13px; }
    .utl-logo img { height: 38px; }
    /* Footer — switch to 2-column wrapping */
    .utl-footer-inner { padding: 48px 32px 36px; gap: 40px; }
    .utl-footer-grid { flex-wrap: wrap; gap: 28px; }
    .utl-footer-brand { flex: 0 0 100%; width: 100%; min-width: 0; }
    .utl-footer-col { flex: 0 0 calc(50% - 14px); min-width: 0; }
    .utl-footer-logo img { height: 38px; }
    .utl-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .utl-footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 600px) {
    .utl-header-inner { padding: 10px 16px; gap: 10px; }
    .utl-logo img { height: 32px; max-width: 200px; }
    .utl-footer-inner { padding: 40px 20px 32px; gap: 32px; }
    .utl-footer-grid { flex-direction: column; gap: 20px; }
    .utl-footer-brand { flex: 0 0 auto; width: 100%; min-width: 0; }
    .utl-footer-col { flex: 0 0 auto; width: 100%; min-width: 0; }
    .utl-footer-logo img { height: 32px; max-width: 220px; }
    .utl-footer-links { gap: 12px; }
}
