/* =========================================================
   RESET
========================================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Inter", sans-serif;
    background: #071525;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

/* =========================================================
   CONTAINER
========================================================== */

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================== */

.header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 76px;
    z-index: 9999;
    background: rgba(5, 16, 32, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

main {
    padding-top: 76px;
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.7px;
    white-space: nowrap;
}

.logo span {
    color: #6bc2f7;
}

/* =========================================================
   DESKTOP NAV
========================================================== */

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: rgba(255,255,255,0.70);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.nav a:hover {
    color: #ffffff;
}

.nav .nav-active {
    position: relative;
}

.nav .nav-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
}

.nav-button {
    padding: 10px 21px;
    background: #ffffff;
    color: #071525 !important;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: all 0.25s ease;
}

.nav-button:hover {
    background: #8ad0ff;
    transform: translateY(-2px);
}

/* =========================================================
   HAMBURGER
========================================================== */

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 21px;
    height: 2px;
    background: #ffffff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   MOBILE MENU
========================================================== */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 86vw);
    height: 100vh;
    padding: 110px 30px 40px;
    background: rgba(5,16,32,0.98);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-left: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.25s ease, visibility 0.35s;
    z-index: 1050;
}

.mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

.mobile-menu a {
    width: 100%;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: rgba(255,255,255,0.78);
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.mobile-menu a:hover {
    background: rgba(107,194,247,0.08);
    color: #ffffff;
}

.mobile-menu .mobile-button {
    margin-top: 18px;
    background: #ffffff;
    color: #071525;
}

.mobile-menu .mobile-button:hover {
    background: #8ad0ff;
    color: #071525;
}

/* =========================================================
   OVERLAY
========================================================== */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1040;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* =========================================================
   HERO LOCAL
========================================================== */

.hero-local {
    padding: 80px 0 100px;
    background:
        radial-gradient(circle at 70% 30%, rgba(107,194,247,0.08), transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(107,194,247,0.04), transparent 35%),
        linear-gradient(135deg, #031020 0%, #08233b 48%, #0d3a5a 100%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.hero-local-content {
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(107,194,247,0.15);
    color: #8ad0ff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(107,194,247,0.15);
}

.hero-local h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-local h1 span {
    color: #8ad0ff;
}

.hero-sub {
    font-size: clamp(16px, 1.2vw, 20px);
    color: rgba(255,255,255,0.70);
    max-width: 680px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}

.btn-primary {
    padding: 14px 34px;
    background: #ffffff;
    color: #071525;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: #8ad0ff;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 34px;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.25);
    transition: all 0.25s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #8ad0ff;
    background: rgba(107,194,247,0.08);
    transform: translateY(-2px);
}

.hero-note {
    font-size: 13px;
    color: rgba(255,255,255,0.40);
}

/* =========================================================
   FOR WHO
========================================================== */

.for-who {
    padding: 80px 0;
    background: #071525;
}

.for-who h2 {
    text-align: center;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.section-sub {
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.for-who-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.for-who-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(107,194,247,0.2);
    transform: translateY(-4px);
}

.for-who-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.for-who-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.for-who-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* =========================================================
   BENEFITS
========================================================== */

.benefits {
    padding: 80px 0;
    background: #031020;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.benefits h2 {
    text-align: center;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.benefits h2 span {
    color: #8ad0ff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px 30px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(107,194,247,0.15);
}

.benefit-number {
    font-size: 32px;
    font-weight: 800;
    color: rgba(107,194,247,0.3);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.benefit-item h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.benefit-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.60);
    line-height: 1.6;
}

/* =========================================================
   EXAMPLES
========================================================== */

.examples {
    padding: 80px 0;
    background: #071525;
}

.examples h2 {
    text-align: center;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.examples h2 span {
    color: #8ad0ff;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.example-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.example-card:hover {
    transform: translateY(-4px);
    border-color: rgba(107,194,247,0.2);
}

.example-image {
    height: 180px;
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.example-placeholder {
    text-align: center;
}

.example-placeholder span {
    font-size: 48px;
    display: block;
    margin-bottom: 4px;
}

.example-placeholder p {
    font-size: 13px;
    color: rgba(255,255,255,0.30);
    font-weight: 500;
}

.example-card h3 {
    font-size: 16px;
    font-weight: 700;
    padding: 16px 20px 4px;
}

.example-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    padding: 0 20px 20px;
    line-height: 1.6;
}

.examples-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.examples-cta p {
    color: rgba(255,255,255,0.60);
    margin-bottom: 14px;
    font-size: 15px;
}

/* =========================================================
   PROCESS
========================================================== */

.process {
    padding: 80px 0;
    background: #031020;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.process h2 {
    text-align: center;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.process h2 span {
    color: #8ad0ff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 24px 26px;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(107,194,247,0.15);
}

.step-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(107,194,247,0.12);
    color: #8ad0ff;
    font-size: 18px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.step-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* =========================================================
   FAQ
========================================================== */

.faq {
    padding: 80px 0;
    background: #071525;
}

.faq h2 {
    text-align: center;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.faq h2 span {
    color: #8ad0ff;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}

.faq-question {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.25s ease;
    font-family: inherit;
}

.faq-question:hover {
    background: rgba(255,255,255,0.03);
}

.faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: rgba(255,255,255,0.30);
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: right;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: #8ad0ff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 22px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 22px 20px;
}

.faq-answer p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

.faq-answer a {
    color: #8ad0ff;
    text-decoration: underline;
}

.faq-answer a:hover {
    color: #ffffff;
}

/* =========================================================
   CONTACTO LOCAL
========================================================== */

.contacto-local {
    padding: 80px 0 100px;
    background:
        radial-gradient(circle at 50% 30%, rgba(107,194,247,0.06), transparent 40%),
        linear-gradient(135deg, #031020 0%, #08233b 48%, #0d3a5a 100%);
}

.contacto-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contacto-box h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.contacto-box h2 span {
    color: #8ad0ff;
}

.contacto-box > p {
    color: rgba(255,255,255,0.60);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 35px;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    text-align: left;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px 26px;
}

.contacto-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contacto-icon {
    font-size: 22px;
    min-width: 32px;
}

.contacto-item strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.40);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contacto-item a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contacto-item a:hover {
    color: #8ad0ff;
}

.contacto-item p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
}

.contacto-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px 26px;
}

.contacto-form form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contacto-form input,
.contacto-form select {
    padding: 13px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.25s ease;
    width: 100%;
}

.contacto-form input::placeholder {
    color: rgba(255,255,255,0.30);
}

.contacto-form input:focus,
.contacto-form select:focus {
    outline: none;
    border-color: rgba(107,194,247,0.4);
}

.contacto-form select {
    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'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.contacto-form select option {
    background: #071525;
    color: #ffffff;
}

.contacto-form .btn-primary {
    width: 100%;
    text-align: center;
}

.contacto-note {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    text-align: center;
}

/* =========================================================
   FOOTER
========================================================== */

.footer {
    padding: 50px 0 25px;
    background: #04101d;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 35px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
}

.footer-logo span {
    color: #6bc2f7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links .link-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.footer-links .link-group .group-title {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    text-align: center;
}

.footer-links .link-group a {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.8;
}

.footer-links .link-group a:hover {
    color: #6bc2f7;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-social .social-label {
    color: rgba(255,255,255,0.35);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    transition: all 0.25s ease;
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    color: rgba(255,255,255,0.50);
}

.social-links svg rect,
.social-links svg circle:not(.instagram-dot) {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.social-links svg .instagram-dot {
    fill: currentColor;
}

.social-links a:hover {
    background: rgba(107,194,247,0.12);
    border-color: rgba(107,194,247,0.30);
    transform: translateY(-3px);
}

.social-links a:hover svg {
    color: #6bc2f7;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.25);
    font-size: 12px;
    text-align: center;
}

/* =========================================================
   TABLET
========================================================== */

@media (max-width: 900px) {

    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .footer-links .link-group {
        align-items: center;
    }

    .footer-social {
        align-items: center;
    }

    .for-who-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacto-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

    .header {
        height: 68px;
    }

    main {
        padding-top: 68px;
    }

    .container {
        width: calc(100% - 28px);
    }

    .header-inner {
        min-height: 68px;
    }

    .logo {
        font-size: 18px;
    }

    .hero-local {
        padding: 50px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .for-who-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .examples-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contacto-form .btn-primary {
        max-width: 100%;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-top {
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-logo {
        font-size: 18px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
    }

    .footer-links .link-group {
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .footer-links .link-group:last-child {
        border-bottom: none;
    }

    .footer-links .link-group .group-title {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .footer-links .link-group a {
        font-size: 12px;
    }

    .social-links a {
        width: 38px;
        height: 38px;
    }

    .social-links svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        font-size: 11px;
        padding-top: 16px;
    }

}

/* =========================================================
   TELEFONOS PEQUEÑOS
========================================================== */

@media (max-width: 400px) {

    .hero-local {
        padding: 40px 0 50px;
    }

    .hero-local h1 {
        font-size: 28px;
    }

    .for-who {
        padding: 50px 0;
    }

    .benefits {
        padding: 50px 0;
    }

    .examples {
        padding: 50px 0;
    }

    .process {
        padding: 50px 0;
    }

    .faq {
        padding: 50px 0;
    }

    .contacto-local {
        padding: 50px 0 70px;
    }

    .footer {
        padding: 30px 0 16px;
    }

    .footer-links .link-group {
        padding: 10px 0;
    }

    .footer-links .link-group a {
        font-size: 11px;
    }

    .social-links {
        gap: 8px;
    }

    .social-links a {
        width: 34px;
        height: 34px;
    }

    .social-links svg {
        width: 16px;
        height: 16px;
    }

}