/* =============================================
   FRANCHISE PAGE STYLES
   ============================================= */

/* =============================================
   SCROLLING IMAGE COLLAGE HERO
   ============================================= */
.franchise-hero-collage {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #0a0a0a;
}

.hero-image-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    z-index: 1;
}

.hero-image-col {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.scroll-track {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scroll-track img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.scroll-up { animation: scrollUp 25s linear infinite; }
.scroll-down { animation: scrollDown 30s linear infinite; }
.scroll-up-fast { animation: scrollUp 20s linear infinite; }

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes scrollDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.hero-collage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.franchise-hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--red-primary);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.3s;
}

.franchise-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(4.5rem, 12vw, 10rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.8);
}

.franchise-title .hero-title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
}

.franchise-title .hero-title-line:nth-child(1) { animation-delay: 0.4s; }
.franchise-title .hero-title-line:nth-child(2) { animation-delay: 0.55s; }

.highlight-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--red-primary);
    text-stroke: 2px var(--red-primary);
}

.franchise-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.7s;
    color: rgba(255, 255, 255, 0.9);
}

.fr-hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.85s;
}

.btn-franchise-hero {
    display: inline-block;
    background: linear-gradient(180deg, #F4E92A 0%, #D4C600 100%);
    color: var(--dark);
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2.5px;
    padding: 1.25rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(244, 233, 41, 0.35);
    border: 2px solid #A89E00;
}

.btn-franchise-hero:hover {
    background: linear-gradient(180deg, #E8DA18 0%, #B8AA00 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(244, 233, 41, 0.5);
}

.btn-fr-secondary-hero {
    display: inline-block;
    color: #ffffff;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2.5px;
    padding: 1.25rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-fr-secondary-hero:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-track { animation: none !important; }
    .franchise-title .hero-title-line,
    .hero-eyebrow,
    .franchise-subtitle,
    .fr-hero-actions {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Buttons */
.btn-fr-primary {
    display: inline-block;
    background: linear-gradient(180deg, #F4E92A 0%, #D4C600 100%);
    color: var(--dark);
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2.5px;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(244, 233, 41, 0.35);
    border: 2px solid #A89E00;
    position: relative;
    overflow: hidden;
}

.btn-fr-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-fr-primary:hover::before { width: 400px; height: 400px; }

.btn-fr-primary:hover {
    background: linear-gradient(180deg, #E8DA18 0%, #B8AA00 100%);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 36px rgba(244, 233, 41, 0.5);
}

.btn-fr-secondary {
    display: inline-block;
    color: #ffffff;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2.5px;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-fr-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* =============================================
   STATS BAR
   ============================================= */
.fr-stats {
    background: var(--red-primary);
    padding: 0;
    border-top: 3px solid var(--dark);
    border-bottom: 3px solid var(--dark);
}

.fr-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fr-stat {
    flex: 1;
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.fr-stat-number {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--dark);
    display: block;
    line-height: 1;
    letter-spacing: 2px;
}

.fr-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--dark);
    opacity: 0.7;
    display: block;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.fr-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(44, 44, 44, 0.2);
    flex-shrink: 0;
}

/* =============================================
   SHARED SECTION STYLES
   ============================================= */
.fr-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.fr-section-eyebrow {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 6px;
    color: var(--red-primary);
    text-align: center;
    margin-bottom: 1rem;
}

.fr-section-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #ffffff;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.fr-section-title--left {
    text-align: left;
}

.fr-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
}

/* =============================================
   WHY CHEF ON CALL
   ============================================= */
.fr-why {
    padding: 7rem 0;
    background: var(--dark);
}

.fr-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.fr-why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.fr-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fr-why-card:hover::before { transform: scaleX(1); }

.fr-why-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(244, 233, 41, 0.2);
    transform: translateY(-6px);
}

.fr-why-icon {
    width: 48px;
    height: 48px;
    color: var(--red-primary);
    margin-bottom: 1.5rem;
}

.fr-why-icon svg { width: 100%; height: 100%; }

.fr-why-card-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.fr-why-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   FRANCHISE MODELS
   ============================================= */
.fr-models {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--dark) 0%, #111111 100%);
}

.fr-models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.fr-model-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.fr-model-card:hover {
    border-color: rgba(244, 233, 41, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.fr-model-card--express {
    background: rgba(244, 233, 41, 0.04);
    border-color: rgba(244, 233, 41, 0.15);
}

.fr-model-badge {
    display: inline-block;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.fr-model-badge--express {
    color: var(--red-primary);
    border-color: rgba(244, 233, 41, 0.3);
}

.fr-model-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.fr-model-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.fr-model-specs {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.5rem;
}

.fr-model-spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fr-model-spec:last-child { border-bottom: none; }

.fr-model-spec-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fr-model-spec-value {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.btn-fr-model {
    display: block;
    text-align: center;
    background: transparent;
    color: var(--red-primary);
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 2.5px;
    padding: 1.1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--red-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-fr-model:hover {
    background: var(--red-primary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(244, 233, 41, 0.3);
}

/* =============================================
   FINANCIALS
   ============================================= */
.fr-financials {
    padding: 7rem 0;
    background: #111111;
}

.fr-financials-table-wrap { max-width: 700px; margin: 0 auto; }

.fr-financials-table { width: 100%; border-collapse: collapse; }

.fr-financials-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
}

.fr-financials-table tr:hover { background: rgba(255, 255, 255, 0.03); }

.fr-financials-table td { padding: 1.5rem 1rem; }

.fr-fin-label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    width: 45%;
}

.fr-fin-value {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* =============================================
   SUPPORT
   ============================================= */
.fr-support {
    padding: 7rem 0;
    background: var(--dark);
}

.fr-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.fr-support-item {
    padding: 2rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease;
}

.fr-support-item:hover { border-color: var(--red-primary); }

.fr-support-number {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--red-primary);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.fr-support-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.fr-support-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

/* =============================================
   STEPS / PROCESS
   ============================================= */
.fr-steps {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--dark) 0%, #1a1a1a 100%);
}

.fr-steps-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.fr-steps-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    width: 2px;
    background: linear-gradient(180deg, var(--red-primary) 0%, rgba(244, 233, 41, 0.1) 100%);
}

.fr-step {
    display: flex;
    gap: 2rem;
    padding-bottom: 3rem;
    position: relative;
}

.fr-step:last-child { padding-bottom: 0; }

.fr-step-marker {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--dark);
    border: 2px solid var(--red-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.fr-step:hover .fr-step-marker {
    background: var(--red-primary);
    box-shadow: 0 0 24px rgba(244, 233, 41, 0.3);
}

.fr-step-num {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--red-primary);
    transition: color 0.3s ease;
}

.fr-step:hover .fr-step-num { color: var(--dark); }

.fr-step-content { padding-top: 0.75rem; }

.fr-step-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.fr-step-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

/* =============================================
   IDEAL PARTNER
   ============================================= */
.fr-partner {
    padding: 7rem 0;
    background: var(--red-primary);
}

.fr-partner .fr-section-eyebrow { color: var(--dark); text-align: left; }
.fr-partner .fr-section-title { color: var(--dark); }

.fr-partner-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.fr-partner-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--dark);
    opacity: 0.8;
}

.fr-partner-checklist {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.fr-partner-check {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.fr-check-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--red-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin-top: 2px;
}

.fr-check-icon svg { width: 100%; height: 100%; }

.fr-check-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.fr-check-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark);
    opacity: 0.7;
}

/* =============================================
   INQUIRY FORM
   ============================================= */
.fr-inquiry {
    padding: 6rem 0 7rem;
    background: var(--dark);
}

/* Single column, centered: avoids a short left rail + empty space beside a tall iframe */
.fr-inquiry-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.25rem;
    max-width: 720px;
    margin: 0 auto;
}

.fr-inquiry-text {
    text-align: center;
    width: 100%;
}

.fr-inquiry-text .fr-section-eyebrow {
    text-align: center;
}

.fr-inquiry-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-align: center;
}

.fr-inquiry-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    max-width: 36em;
    margin-left: auto;
    margin-right: auto;
}

.fr-inquiry-trust {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    max-width: 24rem;
    margin: 0 auto;
    text-align: left;
}

.fr-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.fr-trust-item svg { flex-shrink: 0; color: var(--red-primary); }

.fr-inquiry-form-wrap {
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem 1.75rem 2rem;
    margin: 0;
    box-sizing: border-box;
}

.fr-form-embed {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.fr-form-embed iframe {
    display: block;
    width: 100%;
    max-width: 100%;
}

.fr-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.fr-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.fr-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fr-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.fr-input {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    transition: all 0.3s ease;
    outline: none;
    -webkit-appearance: none;
}

.fr-input::placeholder { color: rgba(255, 255, 255, 0.3); }

.fr-input:focus {
    border-color: var(--red-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(244, 233, 41, 0.1);
}

.fr-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='rgba(255,255,255,0.5)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.fr-select option { background: var(--dark); color: #ffffff; }

.fr-textarea { resize: vertical; min-height: 100px; }

.btn-fr-submit {
    display: block;
    width: 100%;
    background: linear-gradient(180deg, #F4E92A 0%, #D4C600 100%);
    color: var(--dark);
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2.5px;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    border: 2px solid #A89E00;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(244, 233, 41, 0.3);
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-fr-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-fr-submit:hover::before { width: 600px; height: 600px; }

.btn-fr-submit:hover {
    background: linear-gradient(180deg, #E8DA18 0%, #B8AA00 100%);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(244, 233, 41, 0.45);
}

/* =============================================
   FINAL CTA
   ============================================= */
.fr-final-cta {
    padding: 8rem 2rem;
    background: url('images/team/cook-at-fryer.jpg') center center / cover no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fr-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
}

.fr-final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.fr-final-cta-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    color: #ffffff;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.fr-final-cta-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .franchise-hero-collage { min-height: 90vh; }
    .hero-image-grid { gap: 6px; padding: 6px; }
    .franchise-hero-content { padding: 3rem 1.5rem; }
    .franchise-title { font-size: clamp(4rem, 10vw, 7rem); }
    .highlight-outline { -webkit-text-stroke-width: 1.5px; }

    .fr-why-grid { grid-template-columns: repeat(2, 1fr); }
    .fr-support-grid { grid-template-columns: repeat(2, 1fr); }
    .fr-partner-layout { grid-template-columns: 1fr; gap: 3rem; }
    .fr-partner .fr-section-title--left { text-align: center; }
    .fr-partner .fr-section-eyebrow { text-align: center; }
    .fr-partner-intro { text-align: center; }
    .fr-inquiry-layout { max-width: 100%; }
}

@media (max-width: 768px) {
    .franchise-hero-collage { min-height: 100vh; min-height: 100svh; }
    .hero-image-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; padding: 4px; }
    .hero-col-3 { display: none; }
    .scroll-track img { aspect-ratio: 1 / 1.4; border-radius: 6px; }
    .scroll-up { animation-duration: 35s; }
    .scroll-down { animation-duration: 40s; }
    .scroll-up-fast { animation-duration: 30s; }
    .franchise-hero-content { padding: 2rem 1rem; }
    .hero-eyebrow { font-size: 0.75rem; letter-spacing: 3px; margin-bottom: 1rem; }
    .franchise-title { font-size: clamp(3rem, 14vw, 5rem); margin-bottom: 1.5rem; }
    .highlight-outline { -webkit-text-stroke-width: 1.5px; }
    .franchise-subtitle { font-size: 1rem; margin-bottom: 2rem; padding: 0 0.5rem; }
    .btn-franchise-hero { font-size: 1.25rem; padding: 1rem 2.5rem; }
    .btn-fr-secondary-hero { font-size: 1.25rem; padding: 1rem 2.5rem; }
    .fr-hero-actions { flex-direction: column; align-items: center; }
    .btn-franchise-hero, .btn-fr-secondary-hero { width: 100%; max-width: 320px; text-align: center; }

    .fr-stats-inner { flex-wrap: wrap; }
    .fr-stat { flex: 0 0 50%; padding: 1.5rem 1rem; }
    .fr-stat-divider { display: none; }
    .fr-stat-number { font-size: clamp(2.5rem, 10vw, 3.5rem); }

    .fr-why, .fr-models, .fr-financials, .fr-support, .fr-steps, .fr-partner, .fr-inquiry, .fr-final-cta {
        padding: 5rem 0;
    }

    .fr-section-inner { padding: 0 1.5rem; }
    .fr-section-title { font-size: clamp(2rem, 8vw, 3.5rem); }

    .fr-why-grid { grid-template-columns: 1fr; }
    .fr-models-grid { grid-template-columns: 1fr; }
    .fr-model-card { padding: 2rem 1.5rem; }
    .fr-support-grid { grid-template-columns: 1fr; }

    .fr-steps-timeline::before { left: 24px; }
    .fr-step-marker { width: 50px; height: 50px; }
    .fr-step { gap: 1.5rem; }

    .fr-partner-layout { grid-template-columns: 1fr; }
    .fr-inquiry-form-wrap { padding: 1.25rem 1rem 1.5rem; }
    .fr-form-row { grid-template-columns: 1fr; }

    .fr-final-cta { padding: 5rem 1.5rem; }
}

@media (max-width: 480px) {
    .scroll-track img { aspect-ratio: 1 / 1.6; }
    .franchise-title { font-size: clamp(2.5rem, 15vw, 4rem); }
    .highlight-outline { -webkit-text-stroke-width: 1px; }
    .franchise-subtitle { font-size: 0.95rem; }
    .btn-franchise-hero { font-size: 1.1rem; padding: 0.9rem 2rem; }
    .btn-fr-secondary-hero { font-size: 1.1rem; padding: 0.9rem 2rem; }
    .fr-stat { flex: 0 0 50%; }
    .fr-financials-table td { padding: 1.25rem 0.5rem; font-size: 0.9rem; }
    .fr-fin-value { font-size: 1rem; }
}
