/* ===============================
   AI FUNNEL LANDING PAGE
   USE GLOBAL BRAND VARIABLES
   =============================== */

   * {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

.ai-funnel-body {
    min-height: 100vh;
    /* font-family: "Montserrat", "Poppins", Arial, sans-serif; */
    color: var(--brand-text);
    background: var(--brand-bg-main);
}

.ai-funnel-page {
    width: 100%;
    display: flex;
    justify-content: center;
}

.ai-funnel-shell {
    width: 100%;
    max-width: 390px;
    min-height: 100vh;
    padding: 10px 18px 56px;
    position: relative;
    overflow: hidden;
    background: var(--brand-bg-soft);
    box-shadow: 0 0 0 1px rgba(180, 122, 29, 0.08);
}

.ai-funnel-shell::before,
.ai-funnel-shell::after {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 0.35;
    filter: blur(1px);
}

.ai-funnel-shell::before {
    top: -60px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.82), transparent 70%);
}

.ai-funnel-shell::after {
    bottom: 60px;
    left: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.72), transparent 70%);
}

.ai-funnel-header {
    text-align: center;
    position: relative;
    z-index: 2;
}

.ai-funnel-title {
    margin: 0;
    font-size: 2.15rem;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0;
    color: var(--brand-title);
}

.ai-funnel-address {
    margin: 8px auto 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;

    white-space: nowrap;

    font-size: clamp(10px, 1vw, 14px);
    line-height: 1.2;
    font-weight: 700;
    color: var(--brand-title);
}

.ai-funnel-address a {
    color: inherit;
    text-decoration: none;
}

.ai-funnel-logo-wrap {
    margin: 18px auto 18px;
    display: flex;
    justify-content: center;
}

.ai-funnel-logo {
    width: 126px;
    height: 126px;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(180, 122, 29, 0.12));
}

.ai-funnel-media {
    position: relative;
    overflow: hidden;
    box-shadow: var(--brand-shadow);
}

.ai-funnel-media-img {
    width: 100%;
    aspect-ratio: 9 / 14;
    object-fit: cover;
    display: block;
}

.video-sound-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 999px;
    z-index: 2;
}

.ai-funnel-social-block {
    padding: 24px 0 0;
    text-align: center;
}

.ai-funnel-social-text {
    max-width: 290px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 500;
    color: var(--brand-title);
}

.ai-funnel-social-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 18px;
}

.ai-funnel-social-link,
.ai-funnel-social-row a {
    
    width: 34px;
    height: 34px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--brand-accent);
    font-size: 1.72rem;
    line-height: 1;
    transition: transform 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.ai-funnel-social-link i,
.ai-funnel-social-row a i {
    font-style: normal !important;
    display: inline-block;
    line-height: 1;
}

.ai-funnel-social-link:hover,
.ai-funnel-social-row a:hover {
    color: var(--brand-title);
    transform: translateY(-2px);
}

.ai-funnel-hours {
    text-align: center;
    padding: 22px 0 8px;
}

.ai-funnel-hours-title {
    font-size: 20px;
    line-height: 1.15;
    margin: 0 0 4px;
    font-weight: 800;
    color: var(--brand-title);
}

.ai-funnel-hours-text {
    margin: 0;
    color:var(--brand-title);
    white-space: nowrap;
    display: block;
    font-size: clamp(15px, 1.2vw, 16px);
    line-height: 1.2;
}
@media (min-width: 992px) {
    .ai-funnel-hours {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: visible;
    }

    .ai-funnel-hours-text {
        font-size: 15px;
        white-space: nowrap;
        overflow: visible;
    }
}
.ai-funnel-actions {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.ai-funnel-btn {
    min-height: 50px;
    border-radius: 999px;
    border: 1.8px solid var(--brand-accent);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    text-decoration: none;
    color: var(--brand-title);
    font-size: 20px;
    font-weight: 700;
    background: transparent;
    box-shadow: 0 8px 20px rgba(180, 122, 29, 0.06);
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
}

.ai-funnel-btn i {
    font-style: normal !important;
    font-size: 20px;
    width: 16px;
    min-width: 16px;
    text-align: center;
    flex: 0 0 16px;
    color: var(--brand-accent);
    transition: color 0.28s ease;
}

.ai-funnel-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ai-funnel-btn:hover {
    background: var(--brand-title);
    color: var(--brand-white);
    transform: translateY(-2px);
}

.ai-funnel-btn:hover i {
    color: var(--brand-white);
}

.ai-funnel-btn-promo {
    animation: aiPromoBounce 0.75s ease-in-out infinite;
    box-shadow: 0 10px 24px rgba(180, 122, 29, 0.14);
}

.ai-funnel-btn-promo::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.10) 42%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0.10) 58%,
        transparent 100%
    );
    transform: translateX(-140%);
    animation: aiPromoShine 2.2s linear infinite;
    pointer-events: none;
}

.ai-funnel-btn-promo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(180, 122, 29, 0.35);
    animation: aiPromoRing 1.35s ease-out infinite;
    pointer-events: none;
}

@keyframes aiPromoBounce {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 8px 20px rgba(180, 122, 29, 0.08);
    }

    20% {
        transform: translateY(-6px);
        box-shadow: 0 14px 30px rgba(180, 122, 29, 0.18);
    }

    40% {
        transform: translateY(0);
    }

    60% {
        transform: translateY(4px);
    }

    80% {
        transform: translateY(-3px);
    }
}

@keyframes aiPromoRing {
    0% {
        opacity: 0.65;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.04);
    }
}

@keyframes aiPromoShine {
    0% {
        transform: translateX(-140%);
    }

    100% {
        transform: translateX(140%);
    }
}

.ai-funnel-bottom-space {
    height: 72px;
}

@media (max-width: 480px) {
    .ai-funnel-shell {
        padding: 10px 14px 46px;
    }

    .ai-funnel-title {
        font-size: 1.95rem;
    }

    .ai-funnel-logo {
        width: 106px;
        height: 106px;
    }

    .ai-funnel-social-text {
        font-size: 20px;
    }

    .ai-funnel-btn {
        font-size: 20px;
    }

    .ai-funnel-social-link,
    .ai-funnel-social-row a {
        font-size: 1.62rem;
    }
}

/* FOOTER */
.dash-footer-badge {
    max-width: 390px;   
    margin: 0px auto 0px;          
    width: 100%;
    background: #000000;
    text-align: center;
    padding: 8px 12px;
}

.dash-footer-badge a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.dash-footer-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0091b1;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.dash-footer-text {
    color: #0091b1;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}