:root {
    --primary: #000000;
    --text-main: #111111;
    --text-muted: #666666;
    --bg-color: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --accent: #e5ccff;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.logo-img {
    height: 125px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8a2be2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary, .btn-dark {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn-primary:hover, .btn-dark:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid #e0e0e0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

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

/* Hero Section */
.hero {
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 5;
}

.hero-bg-wrapper {
    background-image: url('/bg_hero.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    padding-top: 6rem;
    padding-bottom: 2rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: -1.5px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

/* Partners */
.partners {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 6rem;
    flex-wrap: wrap;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: opacity 0.3s ease;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.partners:hover {
    opacity: 0.8;
}

.partner {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Laptop Image Area */
.laptop-wrapper {
    width: 70vw;
    margin: 0 auto;
    display: block;
}

.laptop-container {
    position: relative;
    display: block;
    max-width: none;
    width: 100%;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.laptop-bg-shape {
    position: absolute;
    top: -3%;
    left: -2%;
    width: 104%;
    height: 106%;
    background: linear-gradient(135deg, #1a73e8, #6bb8ff);
    border-radius: 40px;
    z-index: -1;
    opacity: 0.8;
    filter: blur(2px);
}

.laptop-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 1.2rem 3rem;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.8);
    z-index: 10;
}

.badge-icon {
    width: 35px;
    height: 35px;
    background: conic-gradient(from 0deg, #8a2be2, #4169e1, #8a2be2);
    border-radius: 50%;
    animation: spin 4s linear infinite;
    position: relative;
}

.badge-icon::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
}

.floating-badge span {
    font-size: 1.4rem;
    font-weight: 500;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .about-text h2 {
        font-size: 2.2rem;
    }
    .stat-card h3 {
        font-size: 3rem;
    }
}

/* About Section */
.about-section {
    padding: 8rem 2rem;
    width: 100%;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 5;
}

.about-text h2 {
    font-size: 3.5rem;
    line-height: 1.3;
    font-weight: 500;
    max-width: 80%;
    margin: 0 auto 3rem auto;
    padding: 0 2rem;
    letter-spacing: -1px;
}

.about-text .text-dark {
    color: var(--text-main);
    display: inline;
}

.about-text .text-light {
    color: #b0b0b0;
    display: inline;
}

.btn-collaborate {
    margin-bottom: 6rem;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    padding: 0;
}

.stat-card {
    border-radius: 40px;
    padding: 2rem;
    flex: 1;
    aspect-ratio: 1 /.9;
    max-width: none;
    min-width: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: translate 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:nth-child(even) {
    margin-top: 4rem;
}

.stat-card:hover {
    translate: 0 -10px;
}

.stat-card h3 {
    font-size: 4.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.stat-card p {
    font-size: 1.1rem;
    font-weight: 500;
}

.stat-light {
    background-color: #f5f5f7;
    color: var(--text-main);
}

.stat-light p {
    color: var(--text-muted);
}

.stat-light:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.stat-primary {
    background: linear-gradient(135deg, #1a73e8, #6bb8ff);
    color: #ffffff;
    position: relative;
    box-shadow: 0 20px 40px rgba(26, 115, 232, 0.3);
}

.stat-primary p {
    color: rgba(255, 255, 255, 0.9);
}

/* Expertise Section */
.expertise-section {
    padding: 8rem 5% 10rem 5%;
    background: #f8f8f8;
    position: relative;
}

.expertise-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: flex-start;
}

.expertise-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.expertise-title {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    color: #111;
}

.expertise-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 2.5rem 0;
}

.expertise-block {
    margin-bottom: 1rem;
}

.expertise-block.faded {
    opacity: 0.3;
}

.expertise-heading {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    color: #111;
}

.expertise-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 95%;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    padding: 0.8rem 1.4rem;
    border-radius: 40px;
    background: white;
    border: 1px solid #eee;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.expertise-visual {
    flex: 1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 750px; 
    width: 100%;
}

.visual-wrapper {
    width: 100%;
    height: 100%;
    transform: scale(1.15); /* Scale up to have room to scrub for parallax */
}

.product-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.floating-badge.badge-center {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    z-index: 10;
}

.badge-icon-purple {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #6366f1);
}

.badge-center span {
    font-size: 1.3rem;
    font-weight: 500;
    color: #111;
}

/* line formatting for SplitType */
.line {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .expertise-container {
        flex-direction: column;
        gap: 3rem;
    }
    .expertise-visual {
        height: 500px;
    }
    .expertise-title {
        font-size: 2.8rem;
    }
}

/* ============ Works Section ============ */
.works-section {
    padding: 8rem 5% 6rem 5%;
    background: #f8f8f8;
    position: relative;
}

.works-header {
    max-width: 900px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.works-header h2 {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -1px;
}

.works-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.filter-btn {
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
    background: transparent;
    color: #555;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #eee;
    color: #111;
}

.filter-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.work-card {
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    transition: translate 0.4s ease, box-shadow 0.4s ease;
}

.work-card:hover {
    translate: 0 -6px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.work-card-inner {
    display: flex;
    flex-direction: column;
}

.work-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eaeaea;
    border-radius: 20px;
}

.work-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover .work-thumb img {
    transform: scale(1.04);
}

.thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0e0e0, #c8c8c8);
    color: #999;
    font-size: 4rem;
    font-weight: 700;
}

.work-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0.4rem 0.4rem 0.4rem;
}

.work-name {
    font-size: 1.05rem;
    color: #111;
}

.work-type {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

/* ============ Modal ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: white;
    border-radius: 28px;
    max-width: 800px;
    width: 90%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.25);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: rgba(0,0,0,0.8);
}

.modal-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f0f0f0;
}

.modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 2.5rem;
}

.modal-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111;
}

.modal-domain {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 0.3rem;
}

.modal-type {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 1.5rem;
}

.modal-link {
    font-size: 0.95rem;
}

/* ============ Works Responsive ============ */
@media (max-width: 1024px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .works-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 640px) {
    .works-section {
        padding: 5rem 4% 4rem 4%;
    }
    .works-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .works-header h2 {
        font-size: 1.8rem;
    }
    .works-filters {
        gap: 0.4rem;
        margin-bottom: 2.5rem;
    }
    .filter-btn {
        padding: 0.6rem 1.1rem;
        font-size: 0.8rem;
    }
    .modal-content {
        width: 95%;
        border-radius: 20px;
    }
    .modal-info {
        padding: 1.5rem;
    }
    .modal-info h3 {
        font-size: 1.5rem;
    }
}

/* ============ Feedback Section ============ */
.feedback-section {
    background: #0a0a0a;
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

.feedback-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 4rem;
    min-height: 420px;
}

.feedback-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feedback-quote {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.35;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 4rem;
    white-space: pre-line;
}

.feedback-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.author-info h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.author-info p {
    font-size: 0.95rem;
    color: #888;
    font-weight: 400;
}

.author-company {
    font-size: 3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.12);
    text-align: right;
    line-height: 1.05;
    letter-spacing: -1px;
    white-space: pre-line;
}

/* Indicator (right bar) */
.feedback-right {
    display: flex;
    align-items: stretch;
    padding: 1rem 0;
}

.feedback-indicator {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    height: 100%;
}

.indicator-track {
    width: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.indicator-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #ffffff;
    border-radius: 4px;
    transition: height 0.1s linear;
}

.indicator-tabs {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.8rem;
}

.ind-tab {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.ind-tab:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.ind-tab.active {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

/* Feedback Responsive */
@media (max-width: 1024px) {
    .feedback-quote {
        font-size: 2.2rem;
    }
    .author-company {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .feedback-section {
        padding: 5rem 5%;
    }
    .feedback-container {
        flex-direction: column;
        gap: 2.5rem;
        min-height: auto;
    }
    .feedback-quote {
        font-size: 1.6rem;
        margin-bottom: 2.5rem;
    }
    .feedback-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .author-company {
        font-size: 2rem;
        text-align: left;
    }
    .feedback-right {
        width: 100%;
    }
    .feedback-indicator {
        flex-direction: row-reverse;
        width: 100%;
        gap: 1rem;
    }
    .indicator-track {
        width: 100%;
        height: 3px;
        min-height: auto;
    }
    .indicator-fill {
        width: 0%;
        height: 100% !important;
        transition: width 0.1s linear;
    }
    .indicator-tabs {
        flex-direction: row;
    }
}

/* ============ Footer Section ============ */
.footer-section {
    width: 100%;
}

.footer-cta {
    background-image: linear-gradient(to bottom, #0a0a0a 0%, rgba(10,10,10,0) 30%), url('footer_bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 12rem 5% 6rem 5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    color: #fff;
    min-height: 500px;
    justify-content: center;
}

.footer-logo-top {
    position: absolute;
    top: 2.5rem;
    left: 4rem;
}

.footer-top-img {
    height: 100px;
    object-fit: contain;
}

.footer-title {
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.footer-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.footer-btn {
    background: #fff !important;
    color: #111 !important;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: #eee !important;
    transform: translateY(-2px);
}

.footer-bottom.white-theme {
    background: #ffffff;
    padding: 6rem 5% 0 5%;
    color: #111;
    display: block;
    overflow: hidden;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer-bottom-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 300px;
    min-width: 250px;
}

.footer-logo img {
    height: 120px;
    object-fit: contain;
}

.footer-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.8rem;
    display: block;
}

.language-dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: #f5f5f5;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.language-dropdown:hover {
    background: #ebebeb;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icons a {
    color: #111;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
}

.social-icons a:hover {
    color: #666;
    transform: translateY(-2px);
}

.footer-bottom.white-theme .footer-links-grid {
    flex: 1;
    max-width: 800px;
    gap: 2rem;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.footer-bottom.white-theme .footer-col h4 {
    color: #111;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

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

.footer-bottom.white-theme .footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-bottom.white-theme .footer-col ul li a {
    color: #555;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom.white-theme .footer-col ul li a:hover {
    color: #111;
}

.footer-massive-text {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 15vw;
    font-weight: 800;
    line-height: 0.85;
    color: #1111112c;
    margin: 0;
    padding: 0;
    margin-top: 2rem;
    text-transform: uppercase;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-title {
        font-size: 3.5rem;
    }
    .footer-bottom-top {
        flex-direction: column;
    }
    .footer-bottom.white-theme .footer-links-grid {
        width: 100%;
        max-width: 100%;
    }
    .footer-massive-text {
        font-size: 21vw;
    }
}

@media (max-width: 768px) {
    .footer-cta {
        padding: 9rem 5% 4rem 5%;
    }
    .footer-logo-top {
        position: static;
        margin-bottom: 2rem;
    }
    .footer-title {
        font-size: 2.8rem;
        margin-top: 1rem;
    }
    .footer-bottom.white-theme .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .footer-massive-text {
        font-size: 23vw;
    }
}
@media (max-width: 480px) {
    .footer-bottom.white-theme .footer-links-grid {
        grid-template-columns: 1fr;
    }
}
