:root {
    --color-brand-primary: #E8C547;
    --color-brand-hover: #f3d460;
    --color-brand-dim: rgba(232, 197, 71, 0.12);
    --color-brand-border: rgba(232, 197, 71, 0.35);
    
    --color-bg-base: #060607;
    --color-bg-secondary: #0d0d10;
    --color-bg-card: #131316;
    --color-bg-card-hover: #1a1a1f;
    --color-bg-glass: rgba(18, 18, 22, 0.75);
    --color-border-glass: rgba(255, 255, 255, 0.08);
    --color-border-glass-strong: rgba(255, 255, 255, 0.16);
    
    --color-text-primary: #F5F5F7;
    --color-text-secondary: #A1A1AA;
    --color-text-tertiary: #71717A;

    --font-brand: 'Playfair Display', serif;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
    font-family: var(--font-heading);
}

p {
    text-wrap: pretty;
}

/* Film Grain Overlay */
.grain-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Glass Header */
.glass-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 72px;
    background: rgba(6, 6, 7, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-glass);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-text-primary);
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.desktop-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.desktop-nav a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--color-text-primary);
}

.nav-product-switch {
    font-size: 0.85rem;
    color: var(--color-brand-primary) !important;
    border: 1px solid var(--color-brand-border);
    padding: 4px 14px;
    border-radius: 20px;
    background: var(--color-brand-dim);
    transition: all 0.2s ease;
}

.nav-product-switch:hover {
    background: rgba(232, 197, 71, 0.18);
    transform: translateY(-1px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-brand-primary);
    color: #060607;
    box-shadow: 0 4px 20px rgba(232, 197, 71, 0.25);
}

.btn-primary:hover {
    background: var(--color-brand-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232, 197, 71, 0.35);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border-glass-strong);
    color: var(--color-text-primary);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.large-btn {
    padding: 14px 32px;
    font-size: 15px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    opacity: 0.35;
}

.hero-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 75% 30%, rgba(232, 197, 71, 0.08) 0%, transparent 60%),
        linear-gradient(to right, rgba(6,6,7,0.98) 0%, rgba(6,6,7,0.85) 50%, rgba(6,6,7,0.4) 100%),
        linear-gradient(to bottom, rgba(6,6,7,0) 60%, var(--color-bg-base) 100%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 620px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-brand-dim);
    border: 1px solid var(--color-brand-border);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--color-brand-primary);
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
}

.hero h1 {
    font-size: clamp(40px, 5.2vw, 64px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}

.hero h1 .highlight-gold {
    color: var(--color-brand-primary);
}

.hero .subtitle {
    font-size: 1.12rem;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: 36px;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.trust-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--color-text-tertiary);
    background: rgba(255, 255, 255, 0.03);
    padding: 4px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Phone Mockup Styling */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup-wrap {
    position: relative;
    perspective: 1200px;
}

.phone-mockup {
    position: relative;
    width: 320px;
    max-width: 100%;
    border-radius: 40px;
    padding: 8px;
    background: linear-gradient(145deg, #2b2b32 0%, #121215 100%);
    box-shadow: 
        0 30px 80px -15px rgba(0, 0, 0, 0.85),
        0 0 0 1px rgba(255, 255, 255, 0.12),
        inset 0 1px 2px rgba(255, 255, 255, 0.25);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.phone-mockup:hover {
    transform: translateY(-4px) scale(1.01);
}

.phone-screen {
    width: 100%;
    height: auto;
    border-radius: 32px;
    display: block;
    background: transparent;
}

/* Card Mockup for Modal Sheets */
.card-mockup {
    position: relative;
    width: 380px;
    max-width: 100%;
    border-radius: 36px;
    padding: 8px;
    background: linear-gradient(145deg, #28282e 0%, #121215 100%);
    box-shadow: 
        0 30px 80px -15px rgba(0, 0, 0, 0.85),
        0 0 0 1px rgba(255, 255, 255, 0.12),
        inset 0 1px 2px rgba(255, 255, 255, 0.25);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-mockup:hover {
    transform: translateY(-4px) scale(1.01);
}

.card-screen {
    width: 100%;
    height: auto;
    border-radius: 28px;
    display: block;
    background: transparent;
}

/* Floating Badges on Mockups */
.floating-chip {
    position: absolute;
    background: rgba(20, 20, 24, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border-glass-strong);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-text-primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
}

.floating-chip.gold {
    border-color: var(--color-brand-border);
    color: var(--color-brand-primary);
    background: rgba(26, 24, 18, 0.92);
}

.chip-pos-top-right {
    top: 8%;
    right: -24px;
}

.chip-pos-bottom-left {
    bottom: 12%;
    left: -28px;
}

.chip-pos-mid-left {
    top: 42%;
    left: -24px;
}

/* Feature Sections */
.feature-section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid var(--color-border-glass);
}

.feature-section:nth-child(even) {
    background: var(--color-bg-secondary);
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 72px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-info {
    flex: 1;
    max-width: 540px;
}

.feature-tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.feature-info h2 {
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.25;
    margin-bottom: 18px;
    color: var(--color-text-primary);
}

.feature-info .lead-text {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
}

.mini-spec-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-glass);
    border-radius: 16px;
    padding: 18px 22px;
    transition: all 0.25s ease;
}

.mini-spec-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.mini-spec-card h4 {
    font-size: 1rem;
    color: var(--color-text-primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Bento Grid for Secondary Features */
.bento-section {
    padding: 80px 0;
    position: relative;
    border-bottom: 1px solid var(--color-border-glass);
}

.bento-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.bento-header h2 {
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.bento-header p {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bento-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--color-border-glass);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(232, 197, 71, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.bento-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(232, 197, 71, 0.1);
    border: 1px solid rgba(232, 197, 71, 0.25);
    color: var(--color-brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.bento-card h3 {
    font-size: 1.15rem;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.bento-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}

.bento-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-brand-primary);
    background: rgba(232, 197, 71, 0.08);
    padding: 3px 10px;
    border-radius: 6px;
    align-self: flex-start;
}

/* Minimal Gesture Pill Group */
.gesture-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 14px;
}

.gesture-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--color-border-glass);
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 0.84rem;
    color: var(--color-text-primary);
}

.gesture-pill .gesture-svg {
    filter: none;
}

.mini-spec-card p {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.gesture-guide-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.gesture-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-glass);
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
}

.gesture-item .arrow {
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.gesture-item .action {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-primary);
    display: block;
}

.gesture-item .detail {
    font-size: 0.75rem;
    color: var(--color-text-tertiary);
    margin-top: 2px;
    display: block;
}

/* Product-aligned Vector SVG Icons */
.ui-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.trust-badge-item .ui-icon {
    color: var(--color-brand-primary);
}

.floating-chip .ui-icon {
    color: inherit;
}

.guide-header-icon {
    display: inline-block;
    color: var(--color-brand-primary);
    flex-shrink: 0;
}

.card-icon {
    display: inline-block;
    color: var(--color-brand-primary);
    flex-shrink: 0;
    margin-right: 2px;
}

.gesture-svg {
    color: var(--color-brand-primary);
    filter: drop-shadow(0 2px 8px rgba(232, 197, 71, 0.3));
    transition: transform 0.25s ease;
}

.gesture-item:hover .gesture-svg {
    transform: scale(1.15);
}

.star-icon {
    color: var(--color-brand-primary);
    vertical-align: -2px;
    margin-right: 4px;
}

.launch-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: rgba(232, 197, 71, 0.12);
    border: 1px solid rgba(232, 197, 71, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-primary);
    box-shadow: 0 8px 30px rgba(232, 197, 71, 0.2);
}

.launch-icon {
    color: var(--color-brand-primary);
}

/* Steps Guide Component for beginner-friendly operations */
.guide-steps-box {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--color-border-glass);
    border-radius: 16px;
    padding: 18px 20px;
    margin-top: 20px;
}

.guide-steps-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-brand-primary);
    margin-bottom: 14px;
}

.guide-steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guide-step-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.guide-step-num {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(232, 197, 71, 0.15);
    border: 1px solid rgba(232, 197, 71, 0.4);
    color: var(--color-brand-primary);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.guide-step-content {
    flex: 1;
}

.guide-step-content strong {
    color: var(--color-text-primary);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 2px;
}

.guide-step-content span {
    color: var(--color-text-secondary);
    font-size: 0.84rem;
    line-height: 1.55;
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Double Mockup for Safety */
.safety-visual-wrapper {
    position: relative;
    width: 340px;
}

.safety-modal-overlay {
    position: absolute;
    bottom: -24px;
    right: -36px;
    width: 250px;
    border-radius: 24px;
    padding: 6px;
    background: linear-gradient(145deg, #2b2b32 0%, #141416 100%);
    box-shadow: 
        0 24px 60px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.16);
    z-index: 12;
}

.safety-modal-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(30px, 3.6vw, 44px);
    margin-bottom: 14px;
    color: var(--color-text-primary);
}

.section-header p {
    color: var(--color-brand-primary);
    font-size: 1.05rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--color-bg-secondary);
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-glass);
    border-radius: 18px;
    padding: 22px 28px;
    transition: all 0.25s ease;
}

.faq-item[open] {
    border-color: var(--color-brand-border);
    background: rgba(22, 22, 26, 0.95);
}

.faq-item summary {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--color-brand-primary);
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-content {
    margin-top: 16px;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 14px;
}

/* Reservation Callout */
.reservation-section {
    padding: 90px 0;
}

.reservation-card {
    background: linear-gradient(135deg, rgba(232, 197, 71, 0.09) 0%, rgba(20, 20, 24, 0.95) 100%);
    border: 1px solid var(--color-brand-border);
    border-radius: 28px;
    padding: 56px 36px;
    text-align: center;
    max-width: 840px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(232, 197, 71, 0.08);
}

.reservation-card h2 {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.reservation-card p {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto 32px;
}

/* Footer */
footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--color-border-glass);
    background: #000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-brand .logo {
    margin-bottom: 14px;
}

.footer-brand .copyright {
    color: var(--color-text-tertiary);
    font-size: 14px;
    max-width: 320px;
    line-height: 1.6;
}

.footer-legal {
    text-align: right;
}

.footer-links {
    margin-bottom: 12px;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-brand-primary);
}

.footer-note {
    font-size: 12px;
    color: var(--color-text-tertiary);
    max-width: 440px;
    line-height: 1.6;
}

/* Animation utilities */
.fade-up {
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(24px);
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero-text {
        max-width: 100%;
        margin: 0 auto;
    }
    .hero h1 {
        text-align: center;
    }
    .cta-group {
        justify-content: center;
    }
    .hero-trust-badges {
        justify-content: center;
    }
    .feature-row, .feature-row.reverse {
        flex-direction: column;
        gap: 48px;
        text-align: center;
    }
    .feature-info {
        max-width: 100%;
    }
    .feature-cards-grid {
        text-align: left;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .safety-modal-overlay {
        right: -10px;
        bottom: -16px;
        width: 200px;
    }
}

@media (max-width: 768px) {
    .desktop-nav a:not(.nav-cta):not(.nav-product-switch) {
        display: none;
    }
    .phone-mockup {
        width: 280px;
    }
    .floating-chip {
        display: none; /* Hide floating chips on narrow screens to avoid overflow */
    }
    .gesture-guide-box {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .footer-legal {
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}
