/* ============================================================
   FOOTER  —  .ft__ namespace, no framework, no !important
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@1,600;1,700&display=swap');

/* ── Reset ── */
.ft, .ft *, .ft *::before, .ft *::after {
    box-sizing: border-box;
}
.ft *:not(.container):not(.row):not([class*="col"]) {
    margin: 0;
    padding: 0;
}
.ft a { text-decoration: none; color: #fff !important; }
.ft ul { list-style: none; }
.ft button { cursor: pointer; border: none; background: none; font: inherit; color: #fff !important; }

/* ── Variables ── */
.ft {
    --ft-bg:        #06080a;
    --ft-hero-bg:   #0a0d10;
    --ft-green:     #22a47a;
    --ft-text:      #fff;
    --ft-text-hi:   #fff;
    --ft-border:    rgba(255, 255, 255, 0.07);
    --ft-border-md: rgba(255, 255, 255, 0.10);
    --ft-radius:    14px;
    font-family: 'Inter', sans-serif;
    color: #fff !important;
}

/* ================================================================
   1. HERO — App download banner
   ================================================================ */
.ft__hero {
    background:
        linear-gradient(to right, rgb(28 134 98 / 42%) 0%, transparent 55%), linear-gradient(to bottom, #0a0d10 0%, #0aa86bd9 100%);
    border-bottom: 1px solid var(--ft-border);
    padding: 70px 0 !important;
}

.ft__hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 48px;
}

.ft__hero-heading {
    font-style: italic;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff !important;
    white-space: pre-line;
    margin-bottom: 12px;
}

.ft__hero-sub {
    font-size: 15px;
    color: #fff !important;
    max-width: 380px;
}

.ft__hero-stores {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.ft__store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #0a0d10 !important;
    padding: 12px 20px !important;
    border-radius: var(--ft-radius);
    transition: transform .15s ease, box-shadow .15s ease;
    margin: 0 !important;
}

.ft__store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 164, 122, 0.25);
}

.ft__store-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.ft__store-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.ft__store-label {
    font-size: 11px;
    font-weight: 500;
    color: #0a0d10 !important;
}

.ft__store-name {
    font-size: 15px;
    font-weight: 700;
    color: #0a0d10 !important;
}

/* ================================================================
   2. BODY — 3-column grid
   ================================================================ */
.ft__body {
    background: #1a1a1a;
    padding: 56px 0 28px !important;
}


.ft__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* ── Brand column ── */
.ft__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ft__logo-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.ft__logo-name {
    font-style: italic;
    font-size: 18px;
    font-weight: 600;
    color: var(--ft-green);
}

.ft__tag {
    display: block;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff !important;
    margin-bottom: 16px;
}

.ft__desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #fff !important;
}

/* Contacts */
.ft__contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.ft__contact {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
}

.ft__contact-icon {
    color: var(--ft-green);
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Language switcher */
.ft__lang {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.ft__lang-form {
    display: inline;
}

.ft__lang-btn {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff !important;
    transition: background .15s ease, color .15s ease;
}

.ft__lang-btn:hover,
.ft__lang-btn--active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
}

/* Social */
.ft__social {
    display: flex;
    gap: 10px;
}

.ft__social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    transition: background .15s ease, color .15s ease;
    flex-shrink: 0;
}

.ft__social-btn:hover {
    background: var(--ft-green);
    color: #0a0d10;
}

.ft__social-btn svg {
    width: 16px;
    height: 16px;
}

/* ── Nav columns ── */
.ft__col-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.ft__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ft__nav a {
    font-size: 14px;
    color: #fff !important;
    transition: color .15s ease;
}

.ft__nav a:hover {
    color: #fff !important;
}

/* ================================================================
   3. BOTTOM — copyright bar
   ================================================================ */
.ft__bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
}

.ft__copy {
    color: #fff !important;
}

.ft__bottom-links {
    display: flex;
    gap: 24px;
}

.ft__bottom-links a {
    color: #fff !important;
    font-size: 13px;
    transition: color .15s ease;
}

.ft__bottom-links a:hover {
    color: #fff !important;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
    .ft__hero {
        padding: 36px 24px;
    }

    .ft__hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ft__hero-heading {
        font-size: 28px;
    }

    .ft__body {
        padding: 40px 24px 24px;
    }

    .ft__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .ft__brand {
        grid-column: 1 / -1;
    }

    .ft__bottom {
        margin-top: 32px;
    }
}

@media (max-width: 540px) {
    .ft__hero-stores {
        flex-direction: column;
        width: 100%;
    }

    .ft__store-btn {
        justify-content: center;
    }

    .ft__grid {
        grid-template-columns: 1fr;
    }

    .ft__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
