:root {
    --primary-color: #4340df;
    --accent-color: #6b68ff;
    --success-color: #40df60;
    --error-color: #de0000;
    --text-main: #1a1a1a;
    --text-muted: #777777;
    --text-dark: #222222;
    --text-light: #f0f0f1;
    --text-subtle: #aaaaaa;
    --text-disabled: #888888;
    --color-white: #ffffff;
    --color-black: #000000;
    --bg-light: #ffffff;
    --bg-light-gray: #f5f5f7;
    --bg-page-gray: #f6f6f8;
    --bg-panel-gray: #f5f5f6;
    --bg-dark: #111111;
    --footer-text-light: var(--color-white);
    --footer-text-muted: var(--text-subtle);
    
    --container-width: 1440px;
    --padding-x: 100px;
    --padding-y-section: 160px;
    --mobile-drawer-duration: 1s;
}

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

html {
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-width: 320px;
    font-family: 'SF UI Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.5;
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, 
.section-headline, 
.section-label, 
.hero-title, 
.intro-title,
.model-name {
    font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html:has(body.nav-open),
html.nav-open,
body.nav-open {
    overflow: hidden;
}

body.product-menu-open {
    overflow-x: hidden;
}

main > section,
main > div {
    overflow-anchor: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.image-guard-wrap {
    display: contents;
}

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

a[aria-disabled="true"] {
    cursor: default;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    user-select: none;
    -webkit-user-select: none;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.bg-light-gray { background-color: var(--bg-light-gray); }
.bg-dark { background-color: var(--bg-dark); }

.reveal-enabled .reveal-fade-up {
    opacity: 0;
    transform: translateY(var(--reveal-y, 60px));
    transition:
        opacity var(--reveal-duration, 1.5s) var(--reveal-opacity-ease, ease),
        transform var(--reveal-duration, 1.5s) var(--reveal-transform-ease, cubic-bezier(0.16, 1, 0.3, 1));
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-enabled .reveal-fade-up.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.form-submit-button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    border: 0;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--color-white);
    font-size: 17px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    appearance: none;
    transition: opacity 0.2s ease;
}

.form-submit-button:hover {
    opacity: 0.86;
}

.form-submit-button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

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

.top-nav {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.top-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
    transition: background 0.2s ease, backdrop-filter 0.2s ease;
}

.top-nav.fixed-nav { position: fixed; top: 0; }
.top-nav.fixed-nav::before {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

body.nav-open .top-nav,
body.nav-closing .top-nav {
    z-index: 1004;
}

.top-nav.nav-hidden {
    transform: translateY(calc(-100% - 1px));
}

.top-nav.fixed-nav.nav-hidden::before {
    border-bottom: 0;
}

body.nav-open .top-nav.nav-hidden,
body.nav-closing .top-nav.nav-hidden {
    transform: none;
}

.top-nav-dark .nav-container {
    --nav-y-padding: 26px;
    padding-top: 26px;
    padding-bottom: 26px;
}

.top-nav-dark .nav-link,
.top-nav-dark .btn-demo {
    color: #cccccc;
}

.top-nav-dark .btn-buy {
    color: var(--text-light);
}

.top-nav-dark .btn-buy::before {
    background-color: var(--primary-color);
}

.top-nav-dark.fixed-nav::before {
    background: rgba(0, 0, 0, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.product-menu-open .top-nav-dark .nav-link,
body.product-menu-open .top-nav-dark .btn-demo {
    color: var(--text-main);
}

body.product-menu-open .top-nav-dark .btn-buy {
    color: var(--color-white);
}

body.product-menu-open .top-nav-dark .btn-buy::before {
    background-color: var(--text-main);
}

body.product-menu-open .top-nav::before,
body.product-menu-open .top-nav.fixed-nav::before {
    border-bottom-color: transparent;
}

.nav-container {
    --nav-y-padding: 24px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 24px var(--padding-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

body.nav-open .nav-container,
body.nav-closing .nav-container {
    pointer-events: none;
}

body.nav-open .mobile-menu-btn,
body.nav-closing .mobile-menu-btn {
    pointer-events: auto;
}

body.nav-open .logo,
body.nav-closing .logo {
    pointer-events: auto;
}

.logo {
    flex: 0 0 154px;
}

.logo img {
    width: 154px;
    height: 40px;
    flex-shrink: 0;
}

.desktop-nav {
    display: flex;
    align-self: stretch;
    align-items: stretch;
    gap: 0;
    flex: 1;
    margin-left: 60px;
    justify-content: flex-start;
}

.nav-link {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    padding: var(--nav-y-padding) 0;
    margin-top: calc(var(--nav-y-padding) * -1);
    margin-bottom: calc(var(--nav-y-padding) * -1);
    user-select: none;
    -webkit-user-select: none;
}

.desktop-nav .nav-link {
    padding-left: 20px;
    padding-right: 20px;
}

.desktop-nav:has(.nav-link:hover) .nav-link {
    opacity: 0.4;
}

.desktop-nav:has(.nav-link:hover) .nav-link:hover {
    opacity: 1;
}

body.product-menu-open .desktop-nav .nav-link,
body.product-menu-open .desktop-nav:has(.nav-link:hover) .nav-link {
    opacity: 0.4;
}

body.product-menu-open .desktop-nav .product-menu-trigger,
body.product-menu-open .desktop-nav:has(.nav-link:hover) .product-menu-trigger {
    opacity: 1;
}

.nav-link:active { opacity: 0.6; }

.header-actions {
    display: flex;
    align-self: stretch;
    align-items: stretch;
    gap: 34px;
    padding-left: 20px;
}

.btn-demo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 180px;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    text-align: right;
    padding: var(--nav-y-padding) 20px;
    margin-top: calc(var(--nav-y-padding) * -1);
    margin-bottom: calc(var(--nav-y-padding) * -1);
    user-select: none;
    -webkit-user-select: none;
}

.btn-demo:hover {
    opacity: 0.8;
}

.btn-buy {
    position: relative;
    align-self: center;
    z-index: 0;
    background-color: transparent;
    color: var(--color-white);
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 115px;
    height: 44px;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
}

.btn-buy::before {
    content: '';
    position: absolute;
    inset: -4px;
    z-index: -1;
    background-color: var(--text-main);
    border-radius: 9999px;
}

.btn-buy:hover { opacity: 0.8; }

.mobile-only { display: none; }

.product-menu {
    position: fixed;
    inset: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

body.product-menu-open .product-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.product-menu-closing .product-menu {
    opacity: 0;
    visibility: visible;
    pointer-events: none;
}

.product-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 600px;
    background: var(--bg-panel-gray);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

body.product-menu-open .product-menu-panel {
    opacity: 1;
    transform: translateY(0);
}

body.product-menu-closing .product-menu-panel {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

.product-menu-mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100vh;
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.2);
    cursor: default;
}

.product-menu-content {
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    padding: 158px 200px 82px;
    display: flex;
    gap: 70px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    transition-delay: 0s;
}

body.product-menu-open .product-menu-content {
    opacity: 1;
    transform: translateY(0);
    transition-duration: 0.34s;
    transition-timing-function: ease, cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.12s;
}

body.product-menu-closing .product-menu-content {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

.product-menu-cards {
    display: flex;
    gap: 30px;
}

.product-menu-card {
    width: 280px;
    height: 360px;
    background: var(--color-white);
    border-radius: 20px;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-menu-card:hover,
.product-menu-card:focus-visible {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    outline: none;
}

.product-card-media {
    width: 220px;
    height: 151px;
    margin: 52px 27px 24px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.product-menu-card:nth-child(1) .product-card-media {
    background-image: url('../img/img_tusafe_wallet_top_nav.jpg');
}

.product-menu-card:nth-child(2) .product-card-media {
    margin-left: 30px;
    margin-right: 30px;
    background-image: url('../img/img_tusafe_gift_top_nav.jpg');
}

.product-card-title,
.product-card-desc {
    display: block;
    margin-left: 30px;
    margin-right: 30px;
}

.product-card-title {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}

.product-card-desc {
    width: 220px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.product-menu-business {
    width: 330px;
}

.product-menu-kicker {
    margin: -1px 0 26px;
    color: var(--text-muted);
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
}

.business-menu-item {
    display: block;
    padding-bottom: 26px;
    color: var(--text-main);
}

.business-menu-title,
.business-menu-desc {
    display: block;
}

.business-menu-heading {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.business-menu-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    transition: color 0.2s ease;
}

.business-menu-arrow {
    flex: 0 0 auto;
    color: var(--primary-color);
}

.business-menu-item:hover .business-menu-title,
.business-menu-item:focus-visible .business-menu-title {
    color: var(--primary-color);
}

.business-menu-item:focus-visible {
    outline: none;
}

.business-menu-desc {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 400;
    line-height: 19px;
    transition: opacity 0.2s ease;
}

.business-menu-item:hover .business-menu-desc,
.business-menu-item:focus-visible .business-menu-desc {
    opacity: 0.72;
}

@media (min-width: 1024px) and (max-width: 1300px) {
    .product-menu-content {
        padding-left: 80px;
        padding-right: 80px;
        gap: 40px;
        justify-content: center;
    }
}

.mobile-menu-btn {
    background: transparent;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    position: absolute;
    top: 21px;
    right: 20px;
    width: 36px;
    height: 36px;
    padding: 4px;
    display: none;
    z-index: 1003;
}

.mobile-menu-btn svg {
    display: block;
    width: 28px;
    height: 28px;
    fill: var(--text-main);
}

.top-nav-dark .mobile-menu-btn svg {
    fill: var(--text-light);
}

body.nav-open .mobile-menu-btn,
body.nav-closing .mobile-menu-btn {
    background: transparent;
}

body.nav-open .mobile-menu-btn svg,
body.nav-closing .mobile-menu-btn svg {
    fill: var(--text-main);
}

body.nav-open .top-nav-dark .mobile-menu-btn,
body.nav-closing .top-nav-dark .mobile-menu-btn {
    background: transparent;
}

body.nav-open .top-nav-dark .mobile-menu-btn svg,
body.nav-closing .top-nav-dark .mobile-menu-btn svg {
    fill: var(--text-light);
}

.mobile-menu-btn .line {
    transform-origin: center;
    transform-box: fill-box;
    transition:
        transform 0.24s ease,
        opacity 0.18s ease;
}
.nav-open .mobile-menu-btn .top {
    animation: menuTopToClose 0.24s ease forwards;
}
.nav-open .mobile-menu-btn .middle {
    opacity: 0;
}
.nav-open .mobile-menu-btn .bottom {
    animation: menuBottomToClose 0.24s ease forwards;
}

@keyframes menuTopToClose {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(0, 5px) rotate(0deg);
    }
    100% {
        transform: translate(0, 5px) rotate(45deg);
    }
}

@keyframes menuBottomToClose {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(0, -5px) rotate(0deg);
    }
    100% {
        transform: translate(0, -5px) rotate(-45deg);
    }
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 98px);
    height: calc(100dvh - 98px);
    min-height: 360px;
    overflow: hidden;
    background: var(--bg-light);
    padding: 60px 0 110px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    clip-path: inset(0 0 100% 0);
    transition:
        clip-path 0s linear var(--mobile-drawer-duration),
        opacity 0.22s ease,
        visibility 0s linear var(--mobile-drawer-duration);
    z-index: 1002;
    pointer-events: none;
    will-change: clip-path, opacity;
}

.top-nav-dark .mobile-drawer {
    background: var(--color-black);
}

.nav-open .mobile-drawer {
    opacity: 1;
    visibility: visible;
    clip-path: inset(0 0 -100px 0);
    pointer-events: auto;
    transition:
        clip-path var(--mobile-drawer-duration) cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.12s ease,
        visibility 0s;
}

.nav-closing .mobile-drawer {
    opacity: 1;
    visibility: visible;
    clip-path: inset(0 0 100% 0);
    pointer-events: none;
    transition:
        clip-path var(--mobile-drawer-duration) cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s linear var(--mobile-drawer-duration);
}

.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1001;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
    transition:
        opacity 500ms ease,
        visibility 0s linear var(--mobile-drawer-duration);
}

body.nav-open .mobile-drawer-overlay,
body.nav-closing .mobile-drawer-overlay {
    visibility: visible;
}

body.nav-open .mobile-drawer-overlay {
    opacity: 1;
    pointer-events: auto;
    transition:
        opacity 500ms ease,
        visibility 0s;
}

body.nav-closing .mobile-drawer-overlay {
    opacity: 0;
    pointer-events: none;
}

.mobile-drawer-content {
    position: relative;
    z-index: 1;
    min-height: 0;
    flex: 1;
    overflow-y: auto;
    padding: 0 30px 32px;
    opacity: 0;
    transition: opacity var(--mobile-drawer-duration) ease;
    -webkit-overflow-scrolling: touch;
}

.nav-open .mobile-drawer-content {
    opacity: 1;
}

.nav-closing .mobile-drawer-content {
    opacity: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
}

.mobile-nav-links .nav-link,
.mobile-nav-toggle {
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    background: transparent;
    border: 0;
    color: var(--text-main);
    cursor: pointer;
    font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin: 0;
    padding: 4px 0;
    text-align: left;
    width: 100%;
}

.top-nav-dark .mobile-nav-links .nav-link,
.top-nav-dark .mobile-nav-toggle,
.top-nav-dark .mobile-submenu a {
    color: var(--text-light);
}

.mobile-nav-item {
    width: 100%;
}

.mobile-submenu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.mobile-nav-item.is-open .mobile-submenu {
    max-height: 260px;
    opacity: 1;
    padding-top: 20px;
    padding-bottom: 18px;
}

.mobile-submenu a,
.mobile-submenu p {
    margin: 0;
    font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.top-nav-dark .mobile-submenu p {
    color: var(--text-disabled);
}

.mobile-submenu a {
    display: block;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    color: var(--text-main);
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;
    padding: 4px 0;
}

.mobile-submenu a + a {
    margin-top: 4px;
}

.mobile-submenu p {
    margin-top: 26px;
    margin-bottom: 16px;
    color: var(--text-subtle);
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
}

.mobile-header-actions {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
    width: 100%;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--color-white) 34%, var(--color-white) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--mobile-drawer-duration) ease;
}

.nav-open .mobile-header-actions {
    opacity: 1;
}

.nav-closing .mobile-header-actions {
    opacity: 0;
}

.top-nav-dark .mobile-header-actions {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--color-black) 34%, var(--color-black) 100%);
}

.top-nav-dark .mobile-header-actions .btn-buy::before {
    background-color: var(--primary-color);
}

.top-nav-dark .mobile-header-actions .btn-buy {
    color: var(--text-light);
}

.mobile-header-actions .btn-buy {
    position: relative;
    width: 160px;
    height: 52px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 17px;
    font-weight: 600;
    isolation: isolate;
    pointer-events: auto;
}

.footer {
    padding: 80px 0 40px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-logo {
    width: auto;
    height: 32px;
}
.footer-links-grid {
    display: flex;
    gap: 80px;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-col-title {
    color: var(--footer-text-muted);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}
.footer-link {
    color: var(--footer-text-light);
    font-size: 16px;
    font-weight: 500;
}
.footer-link:hover { opacity: 0.8; }
.app-col a img {
    width: 120px;
    height: auto;
}

.footer-bottom {
    position: relative;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--footer-text-muted);
}
.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--padding-x);
    right: var(--padding-x);
    height: 1px;
    background-color: rgba(255,255,255,0.1);
}
.footer-bottom-links {
    display: flex;
    gap: 30px;
}
.footer-bottom-link {
    font-size: 14px;
    font-weight: 500;
}
.footer-bottom-link:hover { color: var(--color-white); }
.copyright {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 1023px) {
    .product-menu {
        display: none !important;
    }

    a,
    button,
    input,
    textarea,
    select,
    label,
    [role="button"],
    [role="tab"] {
        -webkit-tap-highlight-color: transparent;
    }

    .footer-container {
        flex-direction: column;
    }
    .footer-links-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 40px;
    }
    .footer-col {
        flex: 1;
        min-width: 120px;
    }
    .app-col {
        width: 100%;
        flex: none;
    }

    :root {
        --padding-y-section: 60px;
        --padding-x: 30px;
    }
    
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }
    
    .top-nav {
        top: 0;
        width: 100%;
        max-width: 100vw;
    }
    
    .nav-container {
        height: auto;
        padding: 26px 30px;
    }

    .logo {
        flex-basis: 108px;
    }

    .logo img {
        width: 108px;
        height: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .footer-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }

    .footer-logo-col {
        flex: 0 0 auto;
    }

    .footer-links-grid {
        flex: 1 1 auto;
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 48px;
    }

    .footer-col {
        flex: 0 1 auto;
        min-width: 0;
    }

    .app-col {
        width: auto;
        flex: 0 0 auto;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
    }
}
