.seritto-enterprise-footer {
    --footer-bg-1: #071914;
    --footer-bg-2: #0b2d25;
    --footer-bg-3: #11483c;
    --primary: #038C65;
    --secondary: #F27B13;
    --accent: #D95204;
    --white: #ffffff;
    --soft-text: rgba(255, 255, 255, 0.72);
    --muted-text: rgba(255, 255, 255, 0.52);
    --soft-border: rgba(255, 255, 255, 0.08);
    --glass: rgba(255, 255, 255, 0.05);

    position: relative;
    background:
        radial-gradient(circle at 12% 18%, rgba(242, 123, 19, 0.14), transparent 26%),
        radial-gradient(circle at 88% 12%, rgba(3, 140, 101, 0.16), transparent 24%),
        linear-gradient(135deg, var(--footer-bg-1) 0%, var(--footer-bg-2) 50%, var(--footer-bg-3) 100%);
    color: var(--white);
    padding: 0 0 28px;
    overflow: hidden;
}

.seritto-enterprise-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03), transparent 18%),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 35%);
    pointer-events: none;
}

.footer-top-glow {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 123, 19, 0.75), rgba(3, 140, 101, 0.75), transparent);
    box-shadow: 0 0 24px rgba(242, 123, 19, 0.25);
    opacity: 0.9;
}

/* CTA */
.footer-cta {
    position: relative;
    z-index: 2;
    margin-top: -1px;
    padding: 42px 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-cta-content h2 {
    font-size: 34px;
    font-weight: 900;
    margin: 14px 0 12px;
    letter-spacing: -0.5px;
}

.footer-cta-content p {
    max-width: 620px;
    color: var(--soft-text);
    line-height: 2;
    font-size: 15px;
    margin: 0;
}

.footer-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, rgba(242, 123, 19, 0.95), rgba(217, 82, 4, 0.95));
    box-shadow: 0 12px 24px rgba(217, 82, 4, 0.2);
}

.footer-cta-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-input-group {
    height: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 0 18px;
    backdrop-filter: blur(10px);
}

.footer-input-group i {
    color: var(--secondary);
    font-size: 18px;
}

.footer-input-group input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
}

.footer-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.footer-cta-form button {
    height: 56px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    transition: 0.35s ease;
    box-shadow: 0 16px 32px rgba(217, 82, 4, 0.22);
}

.footer-cta-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 36px rgba(217, 82, 4, 0.28);
}

/* body */
.footer-body {
    position: relative;
    z-index: 2;
    padding: 42px 0 26px;
}

.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 20px;
}

.brand-logo-box {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(242, 123, 19, 1), rgba(217, 82, 4, 1));
    box-shadow:
        0 18px 40px rgba(242, 123, 19, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
}

.brand-logo-content {
    display: flex;
    flex-direction: column;
}

.brand-logo-content strong {
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.4px;
}

.brand-logo-content small {
    margin-top: 7px;
    color: var(--muted-text);
    font-size: 12px;
    letter-spacing: 0.6px;
}

.footer-brand-text {
    max-width: 420px;
    color: var(--soft-text);
    font-size: 14.5px;
    line-height: 2.1;
    margin-bottom: 26px;
}

.footer-contact-grid {
    display: grid;
    gap: 12px;
}

.footer-contact-grid a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.78);
    transition: 0.35s ease;
}

.footer-contact-grid a i {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.footer-contact-grid a:hover {
    color: #fff;
    transform: translateX(-5px);
}

/* links */
.footer-link-block h5,
.trust-panel-head h5 {
    position: relative;
    font-size: 17px;
    font-weight: 850;
    margin-bottom: 22px;
    padding-bottom: 12px;
}

.footer-link-block h5::after,
.trust-panel-head h5::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.footer-link-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-block ul li {
    margin-bottom: 14px;
}

.footer-link-block ul li a {
    position: relative;
    color: var(--soft-text);
    text-decoration: none;
    font-size: 14.5px;
    padding-right: 16px;
    transition: 0.35s ease;
}

.footer-link-block ul li a::before {
    content: "";
    position: absolute;
    right: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    box-shadow: 0 0 10px rgba(242, 123, 19, 0.25);
}

.footer-link-block ul li a:hover {
    color: #fff;
    padding-right: 22px;
}

/* trust panel */
.footer-trust-panel {
    position: relative;
    padding: 26px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(16px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.trust-panel-head p {
    color: var(--muted-text);
    font-size: 13px;
    line-height: 1.9;
    margin: 0 0 18px;
}

.trust-panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.trust-panel-item {
    min-height: 105px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    transition: 0.35s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.trust-panel-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 32px rgba(0, 0, 0, 0.14);
}

.trust-panel-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.footer-social-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-row a {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: 0.35s ease;
}

.footer-social-row a:hover {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    transform: translateY(-4px);
    box-shadow: 0 14px 22px rgba(242, 123, 19, 0.22);
}

/* bottom */
.footer-endbar {
    position: relative;
    z-index: 2;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-endbar p {
    margin: 0;
    color: var(--muted-text);
    font-size: 13.5px;
}

.footer-endbar strong {
    color: #fff;
}

.footer-endbar-left {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-endbar-left a {
    text-decoration: none;
    color: var(--muted-text);
    font-size: 13.5px;
    transition: 0.3s ease;
}

.footer-endbar-left a:hover {
    color: var(--secondary);
}

/* responsive */
@media (max-width: 991px) {
    .footer-cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .footer-cta {
        padding: 30px 18px;
    }

    .footer-cta-content h2 {
        font-size: 24px;
    }

    .footer-input-group {
        height: 54px;
        border-radius: 16px;
    }

    .footer-cta-form button {
        height: 52px;
        border-radius: 16px;
    }

    .trust-panel-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-endbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .brand-logo-box {
        width: 58px;
        height: 58px;
        font-size: 25px;
        border-radius: 18px;
    }

    .brand-logo-content strong {
        font-size: 24px;
    }

    .trust-panel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-social-row {
        flex-wrap: wrap;
    }
}