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

   * {
    box-sizing: border-box;
}

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

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

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

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

/* soft light effect */
.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.8), 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.7), transparent 70%);
}

/* ===============================
   HEADER
   =============================== */
.ai-funnel-header {
    text-align: center;
}

.ai-funnel-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--brand-title);
}

.ai-funnel-address {
    margin: 10px auto 0;
    max-width: 300px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-title);
}

/* ===============================
   LOGO
   =============================== */
.ai-funnel-logo-wrap {
    margin: 24px auto;
    display: flex;
    justify-content: center;
}

.ai-funnel-logo {
    width: 206px;
    height: 206px;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(193, 18, 31, 0.15));
}

/* ===============================
   IMAGE
   =============================== */
   .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: 6px;
}
.ai-funnel-media {
    overflow: hidden;
    box-shadow: var(--brand-shadow);
}

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

/* ===============================
   SOCIAL
   =============================== */
.ai-funnel-social-block {
    padding: 26px 0 0;
    text-align: center;
}

.ai-funnel-social-text {
    max-width: 290px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: var(--brand-title);
}

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

.ai-funnel-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--brand-accent);
    font-size: 1.6rem;
    transition: 0.3s;
}

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

/* ===============================
   HOURS
   =============================== */
.ai-funnel-hours {
    text-align: center;
    padding: 24px 0 10px;
}

.ai-funnel-hours-title {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--brand-title);
}

.ai-funnel-hours-text {
    font-size: 0.75rem;
    color: var(--brand-text);
}

/* ===============================
   BUTTONS
   =============================== */
.ai-funnel-actions {
    display: grid;
    gap: 14px;
    margin-top: 10px;
}

.ai-funnel-btn {
    min-height: 52px;
    border-radius: 999px;
    border: 2px solid var(--brand-title);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--brand-title);
    font-size: 0.95rem;
    font-weight: 700;
    background: transparent;
    box-shadow: var(--brand-shadow);
    transition: all 0.3s ease;
}

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

.ai-funnel-btn i {
    font-size: 0.9rem;
}

/* ===============================
   SPACING
   =============================== */
.ai-funnel-bottom-space {
    height: 80px;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 480px) {
    .ai-funnel-shell {
        padding: 16px 12px 48px;
    }

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