/* ================================================================
   AS Dairy — Frontend Custom Styles
   Linked statically in layouts/app.blade.php (no Vite/node needed)
   ================================================================ */

/* ── Service Placeholder (shown when no image is uploaded) ──── */

/* Container */
.svc-placeholder {
    position: relative;
    border-radius: 1.5rem;
    width: 100%;
    height: 380px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / .10),
        0 8px 10px -6px rgb(0 0 0 / .10);
}

/* Dynamic gradient background — set --svc-grad on parent */
.svc-placeholder__bg {
    position: absolute;
    inset: 0;
    background: var(--svc-grad, linear-gradient(135deg, #f0fdf4, #d1fae5));
}

/* Decorative blobs — set --svc-accent on parent */
.svc-blob {
    background: var(--svc-accent, rgba(34, 197, 94, .15));
}

.svc-blob--center {
    background: var(--svc-accent, rgba(34, 197, 94, .15));
    opacity: .5;
}

/* Inner content wrapper */
.svc-placeholder__body {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 2rem;
}

/* Frosted-glass icon circle */
.svc-icon-wrap {
    background: rgba(255, 255, 255, .70);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

/* Service image max-height helper */
.svc-img {
    max-height: 420px;
}


/* ════════════════════════════════════════════════════════════════
   SERVICE PAGE — hero, quick-nav, service rows, CTA
   ════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.svc-page-hero {
    position: relative;
    height: 70vh;
    min-height: 480px;
    overflow: hidden;
}
.svc-page-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.svc-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,.82) 0%, rgba(30,41,59,.65) 55%, rgba(120,53,15,.42) 100%);
}
.svc-page-hero-dots {
    position: absolute;
    inset: 0;
    opacity: .10;
    background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}
.svc-page-hero-body {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.25rem;
}
.svc-page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(245,158,11,.18);
    border: 1px solid rgba(251,191,36,.38);
    color: #fcd34d;
    padding: .5rem 1.1rem;
    border-radius: 999px;
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.svc-page-hero-title {
    font-size: clamp(2rem, 6vw, 3.75rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.1;
    letter-spacing: -.025em;
}
.svc-page-hero-subtitle {
    font-size: 1.15rem;
    color: #e2e8f0;
    max-width: 38rem;
    margin: 0 0 2rem;
    line-height: 1.7;
}
.svc-page-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #f59e0b;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: .9rem 2rem;
    border-radius: 999px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.25), 0 8px 10px -6px rgba(0,0,0,.1);
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
}
.svc-page-hero-btn:hover {
    background: #d97706;
    transform: scale(1.05);
    color: #fff;
    box-shadow: 0 25px 30px -8px rgba(0,0,0,.3);
}


/* ── Section base ── */
.svc-section {
    padding: 5rem 0; /* matches py-20 used on about/contact pages */
}
.svc-section--white { background: #fff; }
.svc-section--light { background: #f8fafc; }
.svc-section--dark  {
    background: #0f172a;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.svc-section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Row layout ── */
.svc-row {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}
.svc-col-half { width: 100%; }

@media (min-width: 768px) {
    .svc-row          { flex-direction: row; }
    .svc-row--reverse { flex-direction: row-reverse; }
    .svc-col-half     { width: 50%; }
}

/* ── Image column ── */
.svc-img-wrap {
    position: relative;
}
.svc-img-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
}
.svc-img-shadow--tl { top: -1rem; left: -1rem; }
.svc-img-shadow--tr { top: -1rem; right: -1rem; }
.svc-img-shadow--amber  { background: #fef3c7; }
.svc-img-shadow--green  { background: #d1fae5; }
.svc-img-shadow--purple { background: #ede9fe; }
.svc-img-shadow--blue   { background: #dbeafe; }
.svc-img-main {
    position: relative;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
    width: 100%;
    object-fit: cover;
    max-height: 420px;
}

/* ── Image placeholder box (no-image fallback) ── */
.svc-placeholder-box {
    position: relative;
    border-radius: 1.5rem;
    width: 100%;
    height: 380px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.10), 0 8px 10px -6px rgba(0,0,0,.06);
}
/* gradient backgrounds */
.svc-bg--amber  { background: linear-gradient(135deg, #fffbeb, #fef3c7); }
.svc-bg--green  { background: linear-gradient(135deg, #f0fdf4, #d1fae5); }
.svc-bg--purple { background: linear-gradient(135deg, #faf5ff, #ede9fe); }
.svc-bg--dark   { background: linear-gradient(135deg, #1e293b, #0f172a); }
.svc-bg--blue   { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
/* blob colors */
.svc-blob--amber  { background: rgba(245,158,11,.18); }
.svc-blob--green  { background: rgba(34,197,94,.15); }
.svc-blob--purple { background: rgba(139,92,246,.15); }
.svc-blob--dark   { background: rgba(255,255,255,.06); }
.svc-blob--blue   { background: rgba(59,130,246,.15); }

.svc-placeholder-blob { position: absolute; border-radius: 50%; }
.svc-placeholder-blob--tl     { top: -4rem; right: -4rem; width: 14rem; height: 14rem; }
.svc-placeholder-blob--bl     { bottom: -3rem; left: -3rem; width: 10rem; height: 10rem; }
.svc-placeholder-blob--center {
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 18rem; height: 18rem;
    opacity: .5;
}
.svc-placeholder-body {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 2rem;
}
.svc-placeholder-icon {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.10);
    background: rgba(255,255,255,.70);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.svc-placeholder-label {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.svc-placeholder-hint { font-size: .75rem; margin-top: .4rem; opacity: .7; }
.svc-placeholder-label--light { color: #64748b; }
.svc-placeholder-label--dark  { color: #94a3b8; }

/* ── Badge pill (in content column) ── */
.svc-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .375rem 1rem;
    border-radius: 999px;
    font-size: .875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.svc-badge--amber  { background: #fef3c7; color: #b45309; }
.svc-badge--green  { background: #d1fae5; color: #166534; }
.svc-badge--purple { background: #ede9fe; color: #6d28d9; }
.svc-badge--dark   { background: #1e293b; color: #fbbf24; }
.svc-badge--blue   { background: #dbeafe; color: #1d4ed8; }

/* ── Content column text ── */
.svc-content-title {
    font-size: clamp(1.7rem, 4vw, 3rem);
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 1rem;
    line-height: 1.1;
    letter-spacing: -.025em;
}
.svc-content-title--dark { color: #fff; }
.svc-content-desc {
    color: #64748b;
    line-height: 1.75;
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
}
.svc-content-desc--dark { color: #94a3b8; }

/* ── Features grid (image-right layout) ── */
.svc-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
    margin-bottom: 2rem;
}
@media (min-width: 480px) {
    .svc-features-grid { grid-template-columns: repeat(2, 1fr); }
}
.svc-feature-card {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .875rem;
    color: #334155;
    background: #fff;
    padding: .875rem;
    border-radius: .75rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.svc-feature-check {
    width: 1.25rem;
    height: 1.25rem;
    background: #fef3c7;
    color: #d97706;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .1rem;
}

/* ── Features list (image-left layout) ── */
.svc-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.svc-feature-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #334155;
    font-size: 1rem;
}
.svc-feature-check--green {
    width: 1.5rem;
    height: 1.5rem;
    background: #d1fae5;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── Dark-centered layout ── */
.svc-dark-center {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    position: relative;
    z-index: 10;
}
.svc-dark-center-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #1e293b;
    border: 1px solid #334155;
    color: #fbbf24;
    padding: .5rem 1rem;
    border-radius: 999px;
    font-size: .875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.svc-dark-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.svc-dark-glow--tl {
    top: 0; left: 0;
    width: 22rem; height: 22rem;
    background: rgba(245,158,11,.09);
    transform: translate(-50%, -50%);
}
.svc-dark-glow--br {
    bottom: 0; right: 0;
    width: 22rem; height: 22rem;
    background: rgba(59,130,246,.09);
    transform: translate(50%, 50%);
}
.svc-dark-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    margin: 0 auto 2.5rem;
    max-width: 48rem;
}
.svc-dark-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #1e293b;
    border: 1px solid #334155;
    color: #e2e8f0;
    padding: .625rem 1.25rem;
    border-radius: 999px;
    font-size: .875rem;
    font-weight: 600;
}
.svc-dark-pill-check { color: #fbbf24; font-weight: 900; }

/* ── Service button ── */
.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #f59e0b;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: .875rem 1.75rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background .2s, box-shadow .2s, transform .2s;
}
.svc-btn:hover {
    background: #d97706;
    box-shadow: 0 10px 15px -3px rgba(245,158,11,.35);
    transform: scale(1.04);
    color: #fff;
}

/* ── Buffalo watermark images ── */
.svc-watermark {
    position: absolute;
    bottom: 0; right: 1rem;
    height: 12rem;
    object-fit: contain;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    opacity: .05;
}

/* ── CTA banner ── */
.svc-cta-section { padding: 5rem 0; background: #fff; }
.svc-cta-inner   { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.svc-cta-box {
    position: relative;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
@media (min-width: 768px) { .svc-cta-box { padding: 4rem; } }
.svc-cta-deco {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    pointer-events: none;
}
.svc-cta-deco--tr { top: 0; right: 0; width: 16rem; height: 16rem; transform: translate(33%, -33%); }
.svc-cta-deco--bl { bottom: 0; left: 0; width: 12rem; height: 12rem; transform: translate(-33%, 33%); }
.svc-cta-buffalo {
    position: absolute;
    bottom: 0; right: 2rem;
    height: 10rem;
    object-fit: contain;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    opacity: .15;
}
@media (max-width: 767px) { .svc-cta-buffalo { display: none; } }
.svc-cta-content { position: relative; z-index: 10; }
.svc-cta-icon    { font-size: 3rem; margin-bottom: 1rem; }
.svc-cta-title {
    font-size: clamp(1.7rem, 4vw, 3rem);
    font-weight: 900;
    margin: 0 0 1rem;
    letter-spacing: -.025em;
}
.svc-cta-text {
    color: rgba(255,255,255,.85);
    margin: 0 auto 2rem;
    max-width: 36rem;
    line-height: 1.7;
    font-size: 1.05rem;
}
.svc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    color: #d97706;
    font-weight: 900;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.15);
    text-decoration: none;
    transition: box-shadow .2s, transform .2s, color .2s;
}
.svc-cta-btn:hover {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
    transform: scale(1.05);
    color: #b45309;
}

/* ── Empty state ── */
.svc-empty {
    padding: 8rem 0;
    text-align: center;
    background: #f8fafc;
}
.svc-empty-emoji { font-size: 4.5rem; margin-bottom: 1rem; }
.svc-empty-text  { font-size: 1.25rem; color: #64748b; font-weight: 600; }
.svc-empty-hint  { color: #94a3b8; margin-top: .5rem; font-size: .875rem; }
.svc-empty-link  { color: #f59e0b; font-weight: 600; text-decoration: none; }
.svc-empty-link:hover { color: #d97706; text-decoration: underline; }

/* ── Scroll animation (JS adds .is-visible) ── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .svc-section     { padding: 4rem 0; }
    .svc-page-hero   { height: 60vh; min-height: 400px; }
    .svc-cta-box     { padding: 2.5rem 1.25rem; }
    .svc-dark-center { padding: 0 1rem; }
}


/* ════════════════════════════════════════════════════════════════
   GALLERY PAGE
   ════════════════════════════════════════════════════════════════ */

/* ── Hero (matches contact/about pattern) ── */
.gal-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}
.gal-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gal-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}
.gal-hero-body {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.25rem;
}
.gal-hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.1;
    letter-spacing: -.025em;
}
.gal-hero-subtitle {
    font-size: 1.15rem;
    color: #e2e8f0;
    max-width: 38rem;
    margin: 0;
    line-height: 1.7;
}

/* ── Container (matches max-w-7xl mx-auto px-4 sm:px-6 lg:px-8) ── */
.gal-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px)  { .gal-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .gal-container { padding: 0 2rem; } }

/* ── Section ── */
.gal-section {
    padding: 5rem 0;
    background: #f8fafc;
}

/* ── Section label (matches about page "Our Story" label style) ── */
.gal-section-label {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 2rem;
}
.gal-section-bar {
    width: 4px;
    height: 1.5rem;
    background: linear-gradient(180deg, #f59e0b, #f97316);
    border-radius: 2px;
    flex-shrink: 0;
}
.gal-section-text {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #92400e;
}
.gal-section-count {
    margin-left: auto;
    font-size: .8rem;
    color: #94a3b8;
    font-weight: 500;
}

/* ── Masonry grid ── */
.gal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
}
@media (min-width: 640px) {
    .gal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .gal-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Gallery item ── */
.gal-item {
    overflow: hidden;
    border-radius: .75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.04);
    cursor: pointer;
    position: relative;
    transition: box-shadow .25s ease, transform .25s ease;
}
.gal-item:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.15), 0 8px 10px rgba(0,0,0,.06);
    transform: translateY(-4px);
}
.gal-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.gal-item:hover img {
    transform: scale(1.06);
}
.gal-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .25s ease;
    display: flex;
    align-items: flex-end;
}
.gal-item:hover .gal-item-overlay {
    opacity: 1;
}
.gal-item-title {
    color: #fff;
    font-size: .875rem;
    font-weight: 600;
    padding: .75rem 1rem;
    line-height: 1.4;
}

/* ── Lightbox animations ── */
@keyframes galBackdropIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes galMagnifyIn {
    from {
        opacity: 0;
        transform: scale(0.55);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ── Lightbox ── */
.gal-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, .92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.gal-lightbox.open {
    display: flex;
    animation: galBackdropIn .22s ease forwards;
}
.gal-lightbox.open .gal-lightbox-inner {
    animation: galMagnifyIn .32s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.gal-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    color: #fff;
    background: none;
    border: none;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: color .2s, transform .2s;
    padding: 0;
}
.gal-lightbox-close:hover {
    color: #fbbf24;
    transform: scale(1.1);
}
/* Prev / Next arrows */
.gal-lightbox-prev,
.gal-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background .2s, transform .2s;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    padding: 0;
}
.gal-lightbox-prev { left: 1rem; }
.gal-lightbox-next { right: 1rem; }
.gal-lightbox-prev:hover,
.gal-lightbox-next:hover {
    background: rgba(245,158,11,.75);
    transform: translateY(-50%) scale(1.08);
}
.gal-lightbox-prev svg,
.gal-lightbox-next svg { width: 1.25rem; height: 1.25rem; }
/* Counter */
.gal-lightbox-counter {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.7);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .05em;
    pointer-events: none;
}
.gal-lightbox-inner {
    max-width: 64rem;
    width: 100%;
    max-height: 90vh;
    position: relative;
}
.gal-lightbox-img {
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: .5rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,.5);
    display: block;
    margin: 0 auto;
    transition: opacity .2s ease;
}
.gal-lightbox-img.fading { opacity: 0; }
.gal-lightbox-caption {
    color: #e2e8f0;
    text-align: center;
    margin-top: .75rem;
    font-size: .875rem;
    opacity: .8;
}
@media (max-width: 639px) {
    .gal-lightbox-prev { left: .25rem; }
    .gal-lightbox-next { right: .25rem; }
}

/* ── Empty state ── */
.gal-empty {
    text-align: center;
    padding: 5rem 0;
}
.gal-empty-icon  { font-size: 4rem; margin-bottom: 1rem; }
.gal-empty-text  { font-size: 1.15rem; color: #64748b; font-weight: 600; }
.gal-empty-hint  { font-size: .875rem; color: #94a3b8; margin-top: .5rem; }

/* ── Responsive ── */
@media (max-width: 639px) {
    .gal-hero              { height: 320px; }
    .gal-section           { padding: 2.5rem 0; }
    .gal-section-label     { margin-bottom: 1rem; }
    /* 2-column grid on mobile — feels like a real gallery */
    .gal-grid              { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
    .gal-item img          { height: 150px; }
    .gal-item              { border-radius: .5rem; }
}


/* ════════════════════════════════════════════════════════════════
   FRANCHISE PAGE
   ════════════════════════════════════════════════════════════════ */

/* ── Shared container ── */
.frn-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px)  { .frn-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .frn-container { padding: 0 2rem; } }

/* ── Hero ── */
.frn-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
}
.frn-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.frn-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.45) 100%);
}
.frn-hero-body {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.25rem;
    gap: 1rem;
}
.frn-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(245,158,11,.2);
    border: 1px solid rgba(245,158,11,.4);
    color: #fbbf24;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 9999px;
}
.frn-hero-title {
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -.03em;
}
.frn-hero-highlight {
    color: #fbbf24;
}
.frn-hero-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 36rem;
    margin: 0;
    line-height: 1.7;
}
.frn-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #f59e0b;
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    padding: .8rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(245,158,11,.4);
}
.frn-hero-btn svg { width: 1rem; height: 1rem; }
.frn-hero-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245,158,11,.45);
}

/* ── Stats strip ── */
.frn-intro-strip {
    background: #1e293b;
    padding: 1.75rem 0;
}
.frn-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.frn-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
}
.frn-stat-num {
    font-size: 1.75rem;
    font-weight: 900;
    color: #fbbf24;
    line-height: 1;
}
.frn-stat-label {
    font-size: .7rem;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.frn-stat-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(255,255,255,.12);
}

/* ── Sections ── */
.frn-section { padding: 5rem 0; }
.frn-section--light { background: #f8fafc; }
.frn-section--white { background: #fff; }

.frn-section-label {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}
.frn-section-bar {
    width: 4px;
    height: 1.5rem;
    background: linear-gradient(180deg, #f59e0b, #f97316);
    border-radius: 2px;
    flex-shrink: 0;
}
.frn-section-text {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #92400e;
}
.frn-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 1rem;
    letter-spacing: -.025em;
}
.frn-section-desc {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 44rem;
    line-height: 1.7;
    margin: 0 0 3rem;
}

/* ── Model Cards ── */
.frn-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}
@media (max-width: 900px) { .frn-cards-grid { grid-template-columns: 1fr; max-width: 28rem; margin: 0 auto; } }
@media (min-width: 640px) and (max-width: 900px) { .frn-cards-grid { grid-template-columns: repeat(2, 1fr); max-width: none; } }

.frn-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.07), 0 8px 24px rgba(0,0,0,.06);
    border: 2px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
}
.frn-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}
.frn-card--amber { border-color: #fde68a; }
.frn-card--green { border-color: #bbf7d0; }
.frn-card--blue  { border-color: #bfdbfe; }

.frn-card--featured {
    border-color: #16a34a;
    box-shadow: 0 4px 6px rgba(0,0,0,.07), 0 16px 40px rgba(22,163,74,.15);
}
.frn-card-popular {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #16a34a;
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .25rem .75rem;
    border-radius: 9999px;
}
.frn-card-top {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
}
.frn-card-icon { font-size: 2rem; line-height: 1; }
.frn-card-badge {
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .1em;
    padding: .3rem .9rem;
    border-radius: 9999px;
}
.frn-card-badge--amber { background: #fef3c7; color: #92400e; }
.frn-card-badge--green { background: #dcfce7; color: #166534; }
.frn-card-badge--blue  { background: #dbeafe; color: #1e40af; }

.frn-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 .75rem;
    line-height: 1.3;
}
.frn-card-desc {
    font-size: .875rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0 0 1.25rem;
}
.frn-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.frn-card-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .85rem;
    color: #374151;
    font-weight: 500;
}
.frn-check {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    font-weight: 900;
    flex-shrink: 0;
}
.frn-check--amber { background: #fef3c7; color: #d97706; }
.frn-check--green { background: #dcfce7; color: #16a34a; }
.frn-check--blue  { background: #dbeafe; color: #2563eb; }

.frn-card-footer {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f1f5f9;
}
.frn-card-ideal {
    font-size: .75rem;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: .03em;
}
.frn-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    padding: .65rem 1.25rem;
    border-radius: .6rem;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.frn-card-btn--amber { background: #fef3c7; color: #92400e; }
.frn-card-btn--amber:hover { background: #f59e0b; color: #fff; }
.frn-card-btn--green { background: #dcfce7; color: #166534; }
.frn-card-btn--green:hover { background: #16a34a; color: #fff; }
.frn-card-btn--blue  { background: #dbeafe; color: #1e40af; }
.frn-card-btn--blue:hover  { background: #2563eb; color: #fff; }

/* ── Comparison Table (redesigned) ── */
.frn-cmp-wrap {
    overflow-x: auto;
    border-radius: 1.25rem;
    box-shadow: 0 4px 6px rgba(0,0,0,.05), 0 16px 40px rgba(0,0,0,.09);
}
.frn-cmp-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: .875rem;
    table-layout: fixed;
}

/* Column headers */
.frn-cmp-th {
    padding: 0;
    text-align: center;
    vertical-align: top;
}
.frn-cmp-th--feat {
    width: 26%;
    background: #1e293b;
    padding: 1.5rem 1.25rem;
    text-align: left;
    vertical-align: middle;
}
.frn-cmp-feat-label {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #94a3b8;
}
.frn-cmp-th--amber { background: #fffbeb; border-top: 4px solid #f59e0b; }
.frn-cmp-th--green { background: #f0fdf4; border-top: 4px solid #16a34a; }
.frn-cmp-th--blue  { background: #eff6ff; border-top: 4px solid #2563eb; }
.frn-cmp-th--popular { position: relative; }

.frn-cmp-popular-badge {
    background: #16a34a;
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .3rem 0;
    text-align: center;
    margin-bottom: .5rem;
}

.frn-cmp-col-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    padding: 1rem 1rem 1.25rem;
}
.frn-cmp-col-icon { font-size: 2rem; line-height: 1; }
.frn-cmp-col-tag {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: .04em;
    color: #0f172a;
}
.frn-cmp-col-sub {
    font-size: .7rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.4;
    text-align: center;
}

/* Body rows */
.frn-cmp-tr { border-bottom: 1px solid #f1f5f9; }
.frn-cmp-tr:last-child { border-bottom: none; }
.frn-cmp-tr--alt .frn-cmp-td { background: #fafafa; }
.frn-cmp-tr--alt .frn-cmp-td--pop { background: #f0fdf4 !important; }
.frn-cmp-tr--cta .frn-cmp-td { padding: 1.25rem 1rem; border-bottom: none; }

.frn-cmp-td {
    padding: .85rem 1rem;
    text-align: center;
    color: #374151;
    font-weight: 500;
    vertical-align: middle;
}
.frn-cmp-td--feat {
    text-align: left;
    font-weight: 600;
    color: #0f172a;
    background: #fff;
    padding: .85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .875rem;
}
.frn-cmp-td--pop { background: #f0fdf4; }
.frn-cmp-td--cta-cell { vertical-align: middle; }

.frn-cmp-feat-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Value badges */
.frn-cmp-badge {
    display: inline-block;
    padding: .3rem .85rem;
    border-radius: 9999px;
    font-size: .78rem;
    font-weight: 700;
}
.frn-cmp-badge--amber { background: #fef3c7; color: #92400e; }
.frn-cmp-badge--green { background: #dcfce7; color: #166534; }
.frn-cmp-badge--blue  { background: #dbeafe; color: #1e40af; }

/* Risk/level pills */
.frn-cmp-pill {
    display: inline-block;
    padding: .25rem .75rem;
    border-radius: .35rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .03em;
}
.frn-cmp-pill--low  { background: #dcfce7; color: #166534; }
.frn-cmp-pill--mid  { background: #fef9c3; color: #854d0e; }
.frn-cmp-pill--high { background: #fee2e2; color: #991b1b; }

/* Checkmark circles */
.frn-cmp-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    font-size: .8rem;
    font-weight: 900;
}
.frn-cmp-check--amber { background: #fef3c7; color: #d97706; }
.frn-cmp-check--green { background: #dcfce7; color: #16a34a; }
.frn-cmp-check--blue  { background: #dbeafe; color: #2563eb; }

/* CTA buttons */
.frn-cmp-cta {
    display: inline-block;
    padding: .6rem 1.25rem;
    border-radius: .6rem;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, transform .2s;
    white-space: nowrap;
}
.frn-cmp-cta--amber { background: #fef3c7; color: #92400e; }
.frn-cmp-cta--amber:hover { background: #f59e0b; color: #fff; transform: translateY(-2px); }
.frn-cmp-cta--green { background: #16a34a; color: #fff; }
.frn-cmp-cta--green:hover { background: #15803d; transform: translateY(-2px); }
.frn-cmp-cta--blue  { background: #dbeafe; color: #1e40af; }
.frn-cmp-cta--blue:hover  { background: #2563eb; color: #fff; transform: translateY(-2px); }

/* ── How it Works Steps ── */
.frn-steps {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.frn-step {
    flex: 1;
    min-width: 160px;
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.07), 0 4px 12px rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.frn-step-num {
    font-size: 2rem;
    font-weight: 900;
    color: #f59e0b;
    line-height: 1;
}
.frn-step-title {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}
.frn-step-desc {
    font-size: .825rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}
.frn-step-arrow {
    font-size: 1.5rem;
    color: #cbd5e1;
    padding-top: 1.75rem;
    flex-shrink: 0;
    align-self: flex-start;
}
@media (max-width: 767px) {
    .frn-step-arrow { display: none; }
    .frn-steps { gap: .75rem; }
}

/* ── CTA ── */
.frn-cta-section { padding: 5rem 0; background: #f8fafc; }
.frn-cta-box {
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    overflow: hidden;
    text-align: center;
}
.frn-cta-deco {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(245,158,11,.08);
}
.frn-cta-deco--tr { top: -80px; right: -80px; }
.frn-cta-deco--bl { bottom: -80px; left: -80px; }
.frn-cta-buffalo {
    position: absolute;
    right: 2rem;
    bottom: 0;
    height: 180px;
    opacity: .2;
    pointer-events: none;
}
.frn-cta-content { position: relative; z-index: 2; }
.frn-cta-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.frn-cta-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 .75rem;
    letter-spacing: -.02em;
}
.frn-cta-text {
    color: #94a3b8;
    font-size: 1rem;
    max-width: 36rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.frn-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #f59e0b;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 2.25rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background .2s, transform .2s;
}
.frn-cta-btn svg { width: 1.1rem; height: 1.1rem; }
.frn-cta-btn:hover { background: #d97706; transform: translateY(-2px); }

/* ── Responsive ── */
@media (max-width: 639px) {
    .frn-hero            { height: 400px; }
    .frn-section         { padding: 3.5rem 0; }
    .frn-stat-divider    { display: none; }
    .frn-cta-box         { padding: 2.5rem 1.25rem; }
    .frn-cta-buffalo     { display: none; }
}


/* ════════════════════════════════════════════════════════════════
   FRANCHISE MODEL DETAIL PAGE  (frn-m-*)
   ════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.frn-m-hero { position: relative; height: 480px; overflow: hidden; }

/* ── Breadcrumb ── */
.frn-m-breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 1rem;
}
.frn-m-breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.frn-m-breadcrumb a:hover { color: #fbbf24; }
.frn-m-breadcrumb span:last-child { color: #fbbf24; font-weight: 700; }

/* ── Marquee ── */
.frn-m-marquee-wrap {
    overflow: hidden;
    padding: .65rem 0;
}
.frn-m-marquee {
    display: flex;
    white-space: nowrap;
    animation: frn-marquee 28s linear infinite;
}
@keyframes frn-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.frn-m-marquee-item {
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    padding: 0 2rem;
    opacity: .9;
}
.frn-m-marquee-dot { color: rgba(255,255,255,.5); font-size: .7rem; align-self: center; }

/* ── Page body wrapper ── */
.frn-m-body {
    background: #f8fafc;
    padding: 3rem 0 4rem;
}
.frn-m-body-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (min-width: 640px)  { .frn-m-body-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .frn-m-body-inner { padding: 0 2rem; } }
@media (max-width: 900px)  { .frn-m-body-inner { grid-template-columns: 1fr; } }

/* ── Sidebar ── */
.frn-m-sidebar {
    position: sticky;
    top: 5.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
@media (max-width: 900px) { .frn-m-sidebar { position: static; } }

/* sidebar investment card */
.frn-m-sidebar-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid;
    box-shadow: 0 2px 8px rgba(0,0,0,.07);
}
.frn-m-sidebar-card-head {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.1rem;
    color: #fff;
}
.frn-m-sidebar-card-icon { font-size: 1.4rem; }
.frn-m-sidebar-card-label { font-size: .78rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.frn-m-sidebar-invest { padding: .5rem 1.1rem; }
.frn-m-sidebar-row {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    padding: .55rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.frn-m-sidebar-row:last-child { border-bottom: none; }
.frn-m-sidebar-key  { font-size: .65rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #94a3b8; }
.frn-m-sidebar-val  { font-size: .88rem; font-weight: 700; color: #0f172a; }
.frn-m-sidebar-btn {
    display: block;
    text-align: center;
    margin: .75rem 1.1rem 1rem;
    padding: .65rem;
    border-radius: .6rem;
    color: #fff;
    font-weight: 700;
    font-size: .83rem;
    text-decoration: none;
    transition: opacity .2s;
}
.frn-m-sidebar-btn:hover { opacity: .85; }

/* sidebar nav */
.frn-m-sidebar-nav {
    background: #fff;
    border-radius: 1rem;
    padding: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.frn-m-sidebar-nav-head {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: #94a3b8;
    margin: 0 0 .6rem;
}
#frn-sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.frn-m-nav-link {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .75rem;
    border-radius: .5rem;
    font-size: .84rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.frn-m-nav-link:hover { background: #f1f5f9; color: #0f172a; }
.frn-m-nav-link--active { background: #fef3c7; color: #92400e; font-weight: 700; }
.frn-m-nav-arrow { width: .85rem; height: .85rem; flex-shrink: 0; }

/* sidebar other models */
.frn-m-sidebar-other {
    background: #fff;
    border-radius: 1rem;
    padding: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.frn-m-other-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: .55rem .75rem;
    border-radius: .5rem;
    font-size: .84rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: background .15s, color .15s;
    margin-bottom: .15rem;
}
.frn-m-other-pill:hover { background: #f1f5f9; color: #0f172a; }

/* ── Right content area ── */
.frn-m-content { display: flex; flex-direction: column; gap: 0; }

.frn-m-intro-para {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    border-left: 4px solid #f59e0b;
}

.frn-m-section {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    scroll-margin-top: 6rem;
}
.frn-m-section-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.frn-m-section-icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.frn-m-section-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    letter-spacing: -.02em;
}
.frn-m-section-desc {
    font-size: .9rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 1.1rem;
}
.frn-m-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.frn-m-point {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .9rem;
    color: #334155;
    font-weight: 500;
    line-height: 1.5;
}
.frn-m-point-check {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: .1rem;
}

/* ── Pros / Cons ── */
.frn-m-pros-cons {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    margin-bottom: 1.5rem;
}
.frn-m-pros-cons-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    padding: 1.25rem 1.75rem .75rem;
    margin: 0;
    border-bottom: 1px solid #f1f5f9;
}
.frn-m-pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) { .frn-m-pros-cons-grid { grid-template-columns: 1fr; } }

.frn-m-pros-box,
.frn-m-cons-box { padding: 1.5rem 1.75rem; }
.frn-m-cons-box { border-left: 1px solid #f1f5f9; background: #fafafa; }
@media (max-width: 600px) { .frn-m-cons-box { border-left: none; border-top: 1px solid #f1f5f9; } }

.frn-m-pros-head,
.frn-m-cons-head {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: .4rem;
    padding: .4rem .8rem;
    margin-bottom: 1rem;
    width: fit-content;
}
.frn-m-pros-head { color: #fff; }
.frn-m-cons-head { background: #fef3c7; color: #92400e; }

.frn-m-pros-list,
.frn-m-cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.frn-m-pros-list li,
.frn-m-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .875rem;
    color: #334155;
    line-height: 1.5;
}
.frn-m-pros-check { font-weight: 900; font-size: .9rem; flex-shrink: 0; margin-top: .05rem; }
.frn-m-cons-dash  { font-weight: 900; font-size: 1rem; color: #f59e0b; flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 639px) {
    .frn-m-hero  { height: 400px; }
    .frn-m-body  { padding: 2rem 0 3rem; }
    .frn-m-section { padding: 1.25rem; }
}


/* ════════════════════════════════════════════════════════════════
   TESTIMONIALS PAGE  (tsm-*)
   ════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.tsm-hero { position: relative; height: 400px; overflow: hidden; }

/* ── Container ── */
.tsm-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px)  { .tsm-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .tsm-container { padding: 0 2rem; } }

/* ── Rating summary card ── */
.tsm-summary-section {
    background: #fff;
    padding: 3rem 0 2rem;
}
.tsm-summary-card {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,.05), 0 16px 40px rgba(0,0,0,.08);
    flex-wrap: wrap;
}

/* Score block */
.tsm-score-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
    min-width: 120px;
}
.tsm-score-num {
    font-size: 4rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -.05em;
}
.tsm-score-stars { display: flex; gap: .2rem; }
.tsm-score-label { font-size: .8rem; font-weight: 600; color: #94a3b8; }

/* Stars */
.tsm-star         { font-size: 1.1rem; }
.tsm-star--full   { color: #f59e0b; }
.tsm-star--half   { color: #f59e0b; opacity: .6; }
.tsm-star--empty  { color: #e2e8f0; }

/* Divider */
.tsm-summary-divider {
    width: 1px;
    height: 5rem;
    background: #f1f5f9;
    flex-shrink: 0;
}
@media (max-width: 640px) { .tsm-summary-divider { width: 100%; height: 1px; } }

/* Distribution bars */
.tsm-dist-block {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.tsm-dist-row {
    display: flex;
    align-items: center;
    gap: .65rem;
}
.tsm-dist-label {
    font-size: .78rem;
    font-weight: 700;
    color: #64748b;
    width: 2rem;
    flex-shrink: 0;
    text-align: right;
}
.tsm-dist-bar-wrap {
    flex: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}
.tsm-dist-bar {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    border-radius: 4px;
    transition: width .6s ease;
}
.tsm-dist-count {
    font-size: .75rem;
    font-weight: 600;
    color: #94a3b8;
    width: 1.5rem;
    flex-shrink: 0;
}

/* Quick stats */
.tsm-stats-block {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex-shrink: 0;
}
@media (max-width: 640px) { .tsm-stats-block { flex-direction: row; gap: 1.5rem; } }
.tsm-stat-item { text-align: center; }
.tsm-stat-val {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #f59e0b;
    line-height: 1;
}
.tsm-stat-lbl {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #94a3b8;
}

/* ── Filter bar ── */
.tsm-filter-section {
    background: #f8fafc;
    padding: 1.25rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.tsm-filter-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.tsm-filter-label {
    font-size: .8rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: .04em;
    flex-shrink: 0;
}
.tsm-filter-btns { display: flex; gap: .5rem; flex-wrap: wrap; }
.tsm-filter-btn {
    padding: .4rem 1rem;
    border-radius: 9999px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    font-size: .8rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all .2s;
}
.tsm-filter-btn:hover { border-color: #f59e0b; color: #92400e; background: #fef9c3; }
.tsm-filter-btn--active { background: #f59e0b; border-color: #f59e0b; color: #fff; }

/* ── Cards section ── */
.tsm-section {
    background: #f8fafc;
    padding: 3.5rem 0 5rem;
}

/* ── Cards grid ── */
.tsm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}
@media (max-width: 900px) { .tsm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tsm-grid { grid-template-columns: 1fr; } }

/* ── Testimonial card ── */
.tsm-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 8px 20px rgba(0,0,0,.06);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform .25s ease, box-shadow .25s ease;
    border: 1px solid #f1f5f9;
}
.tsm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,.1);
}

.tsm-card-quote {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 4rem;
    line-height: 1;
    color: #fef3c7;
    font-family: Georgia, serif;
    font-weight: 900;
    pointer-events: none;
    user-select: none;
}

.tsm-card-stars {
    display: flex;
    align-items: center;
    gap: .2rem;
}
.tsm-card-rating-val {
    margin-left: .4rem;
    font-size: .78rem;
    font-weight: 700;
    color: #92400e;
    background: #fef3c7;
    padding: .1rem .5rem;
    border-radius: 9999px;
}

.tsm-card-msg {
    font-size: .925rem;
    color: #475569;
    line-height: 1.75;
    margin: 0;
    flex: 1;
    font-style: italic;
}

.tsm-card-author {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}
.tsm-card-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #fef3c7;
}
.tsm-card-avatar-init {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tsm-card-author-info { display: flex; flex-direction: column; gap: .15rem; }
.tsm-card-name  { font-size: .9rem; font-weight: 800; color: #0f172a; }
.tsm-card-desig { font-size: .75rem; color: #94a3b8; font-weight: 500; }

/* ── No results ── */
.tsm-no-results {
    text-align: center;
    padding: 3rem 0;
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 600;
}

/* ── Empty state ── */
.tsm-empty {
    text-align: center;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.tsm-empty-icon  { font-size: 4rem; }
.tsm-empty-title { font-size: 1.5rem; font-weight: 800; color: #0f172a; margin: 0; }
.tsm-empty-text  { font-size: .95rem; color: #64748b; margin: 0; }
.tsm-empty-btn {
    margin-top: .5rem;
    display: inline-block;
    background: #f59e0b;
    color: #fff;
    font-weight: 700;
    padding: .75rem 1.75rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background .2s;
}
.tsm-empty-btn:hover { background: #d97706; }

/* ── CTA ── */
.tsm-cta-section { padding: 5rem 0; background: #f8fafc; }
.tsm-cta-box {
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    overflow: hidden;
    text-align: center;
}
.tsm-cta-deco {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(245,158,11,.07);
}
.tsm-cta-deco--tr { top: -80px; right: -80px; }
.tsm-cta-deco--bl { bottom: -80px; left: -80px; }
.tsm-cta-buffalo {
    position: absolute;
    right: 2rem;
    bottom: 0;
    height: 180px;
    opacity: .15;
    pointer-events: none;
}
.tsm-cta-inner { position: relative; z-index: 2; }
.tsm-cta-icon  { font-size: 2.5rem; margin-bottom: .75rem; }
.tsm-cta-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 .75rem;
    letter-spacing: -.02em;
}
.tsm-cta-text {
    color: #94a3b8;
    font-size: 1rem;
    max-width: 36rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.tsm-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #f59e0b;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 2.25rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background .2s, transform .2s;
}
.tsm-cta-btn svg { width: 1.1rem; height: 1.1rem; }
.tsm-cta-btn:hover { background: #d97706; transform: translateY(-2px); }

/* ── Responsive ── */
@media (max-width: 639px) {
    .tsm-hero        { height: 320px; }
    .tsm-summary-card { gap: 1.5rem; }
    .tsm-cta-box     { padding: 2.5rem 1.25rem; }
    .tsm-cta-buffalo { display: none; }
}




















/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DAIRY.CSS â€” AS Dairy Frontend Styles
   public/includes-frontend/css/dairy.css
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€â”€ BLOG PAGE HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-page-header {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fff7ed 100%);
    padding: 72px 0 56px;
    border-bottom: 1px solid #fde68a;
    position: relative;
    overflow: hidden;
}

.blog-page-header::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(245, 158, 11, .07);
    pointer-events: none;
}

.blog-page-header::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(249, 115, 22, .06);
    pointer-events: none;
}

.blog-header-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #92400e;
    margin-bottom: 20px;
}

.blog-breadcrumb a {
    color: #b45309;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}

.blog-breadcrumb a:hover {
    color: #d97706;
}

.blog-breadcrumb-sep {
    color: #d97706;
    font-weight: 700;
}

.blog-breadcrumb-current {
    color: #d97706;
    font-weight: 700;
}

.blog-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 999px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(245, 158, 11, .35);
}

.blog-header-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    color: #1e293b;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin: 0 0 16px;
}

.blog-header-title span {
    color: #d97706;
}

.blog-header-subtitle {
    color: #78716c;
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.blog-header-stats {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid #fde68a;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(245, 158, 11, .1);
    margin-bottom: 40px;
}

.blog-header-stat {
    padding: 14px 28px;
    text-align: center;
    border-right: 1px solid #fde68a;
}

.blog-header-stat:last-child {
    border-right: none;
}

.blog-header-stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #d97706;
    line-height: 1;
}

.blog-header-stat-label {
    font-size: 11px;
    color: #92400e;
    margin-top: 3px;
    font-weight: 600;
    letter-spacing: .04em;
}

/* â”€â”€â”€ SEARCH BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-search-section {
    background: #fff;
    padding: 24px 0;
    border-bottom: 1px solid #e2e8f0;
}

.blog-search-box {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
}

.blog-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    color: #94a3b8;
    pointer-events: none;
}

.blog-search-input {
    width: 100%;
    padding: 14px 18px 14px 48px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    color: #334155;
    outline: none;
    transition: border-color .2s, background .2s, box-shadow .2s;
    box-sizing: border-box;
    font-family: inherit;
}

.blog-search-input:focus {
    border-color: #f59e0b;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, .12);
}

.blog-search-count {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 8px;
}

.blog-search-count strong {
    font-weight: 700;
    color: #d97706;
}

/* â”€â”€â”€ BLOG CONTENT AREA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-content {
    background: #f8fafc;
    padding: 48px 0 80px;
}

.blog-grid-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.blog-grid-bar {
    width: 4px;
    height: 22px;
    background: linear-gradient(180deg, #f59e0b, #f97316);
    border-radius: 2px;
    flex-shrink: 0;
}

.blog-grid-label-text {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #92400e;
}

.blog-grid-divider {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

/* â”€â”€â”€ 3-COLUMN BLOG GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-grid-4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* â”€â”€â”€ BLOG CARD â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-card-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05), 0 4px 14px rgba(0, 0, 0, .04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex;
    flex-direction: column;
}

.blog-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
    border-color: #fde68a;
}

.blog-card-img-wrap {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card-item:hover .blog-card-img {
    transform: scale(1.06);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-sizing: border-box;
}

.blog-card-placeholder-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 18px 18px;
}

.blog-card-placeholder-text {
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .88);
    text-align: center;
    line-height: 1.45;
}

.blog-card-readtime-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(245, 158, 11, .92);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 3px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.blog-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-date {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card-title {
    font-size: 14.5px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.45;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card-title a {
    text-decoration: none;
    color: inherit;
    transition: color .2s;
}

.blog-card-item:hover .blog-card-title a {
    color: #d97706;
}

.blog-card-excerpt {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.65;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-card-spacer {
    flex: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f8fafc;
    margin-top: auto;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.blog-card-author-name {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
}

.blog-card-read-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 700;
    color: #d97706;
    text-decoration: none;
    transition: gap .2s, color .2s;
}

.blog-card-read-link:hover {
    gap: 6px;
    color: #b45309;
}

/* â”€â”€â”€ NO RESULTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-no-results {
    display: none;
    text-align: center;
    padding: 60px 0;
}

.blog-no-results-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.blog-no-results-title {
    font-size: 20px;
    font-weight: 800;
    color: #334155;
    margin: 0 0 8px;
}

.blog-no-results-text {
    font-size: 14px;
    color: #94a3b8;
}

/* â”€â”€â”€ PAGINATION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-pagination {
    margin-top: 56px;
    display: flex;
    justify-content: center;
}

.blog-pagination nav {
    display: flex;
    justify-content: center;
}

.blog-pagination nav span[aria-current="page"]>span {
    background: #d97706 !important;
    color: #fff !important;
    border-color: #d97706 !important;
    border-radius: 8px;
}

.blog-pagination nav a {
    border-radius: 8px;
    transition: background .2s, color .2s;
}

.blog-pagination nav a:hover {
    background: #fef3c7;
    color: #d97706;
}

/* â”€â”€â”€ EMPTY STATE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-empty {
    text-align: center;
    padding: 80px 0;
}

.blog-empty-icon-wrap {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #fef3c7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.blog-empty-icon {
    width: 48px;
    height: 48px;
    color: #fbbf24;
}

.blog-empty-title {
    font-size: 24px;
    font-weight: 900;
    color: #1e293b;
    margin: 0 0 10px;
}

.blog-empty-text {
    font-size: 15px;
    color: #94a3b8;
    max-width: 360px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.blog-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(245, 158, 11, .35);
    transition: opacity .2s, transform .2s;
}

.blog-empty-btn:hover {
    opacity: .9;
    transform: translateY(-1px);
    color: #fff;
}

/* â”€â”€â”€ AMBER NEWSLETTER CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-amber-cta {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.blog-amber-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.blog-amber-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.blog-amber-cta-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.blog-amber-cta-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.blog-amber-cta-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -.02em;
}

.blog-amber-cta-text {
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 32px;
}

.blog-amber-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #d97706;
    font-size: 15px;
    font-weight: 800;
    padding: 14px 36px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    transition: transform .2s, box-shadow .2s, color .2s;
}

.blog-amber-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
    color: #b45309;
}

/* â”€â”€â”€ CARD PLACEHOLDER GRADIENTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.card-grad-1 {
    background: linear-gradient(135deg, #78350f, #b45309);
}

.card-grad-2 {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
}

.card-grad-3 {
    background: linear-gradient(135deg, #052e16, #15803d);
}

.card-grad-4 {
    background: linear-gradient(135deg, #1c1917, #44271b);
}

.card-grad-5 {
    background: linear-gradient(135deg, #1e1b4b, #3730a3);
}

.card-grad-6 {
    background: linear-gradient(135deg, #134e4a, #0f766e);
}

.card-grad-7 {
    background: linear-gradient(135deg, #3b0764, #6b21a8);
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
    .blog-page-header {
        padding: 56px 0 40px;
    }

    .blog-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-header-stat {
        padding: 12px 18px;
    }
}

@media (max-width: 480px) {
    .blog-grid-4 {
        grid-template-columns: 1fr;
    }

    .blog-header-stats {
        flex-direction: column;
        border-radius: 14px;
    }

    .blog-header-stat {
        border-right: none;
        border-bottom: 1px solid #fde68a;
    }

    .blog-header-stat:last-child {
        border-bottom: none;
    }
}

/* ============================================================
   HOME PAGE  (hp-*)
   All custom classes for resources/views/frontend/pages/home/index.blade.php
   Tailwind utilities are kept as-is; these classes replace
   repeated / complex utility chains only.
   ============================================================ */

/* ── Banner Strip ── */
.hp-strip {
    background: linear-gradient(to right, #fffbeb, #fff7ed, #fffbeb);
    padding: 20px 0;
    border-top: 4px solid #fde68a;
    border-bottom: 4px solid #fde68a;
}
.hp-strip-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
.hp-strip-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}
.hp-strip-items::-webkit-scrollbar { display: none; }
.hp-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.hp-strip-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.hp-strip-item span {
    font-weight: 600;
    font-size: 0.875rem;
    color: #1e293b;
    white-space: nowrap;
}
.hp-strip-divider {
    width: 1px;
    height: 28px;
    background: #fcd34d;
    flex-shrink: 0;
}

/* ── Hero Section explicit height (fallback for Tailwind h-[65vh] / md:h-[90vh]) ── */
.hero-section {
    position: relative;
    height: 65vh;
    width: 100%;
    overflow: hidden;
}
@media (min-width: 768px) {
    .hero-section { height: 90vh; }
}

/* Hero title explicit sizes (fallback for Tailwind text-3xl / md:text-7xl) */
.hero-title {
    font-size: 1.875rem;  /* text-3xl */
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    max-width: 56rem;
    line-height: 1.2;
}
@media (min-width: 640px) {
    .hero-title { font-size: 3rem; }   /* sm:text-5xl */
}
@media (min-width: 768px) {
    .hero-title { font-size: 4.5rem; } /* md:text-7xl */
}

/* About flex row on desktop */
.hp-about-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
@media (min-width: 768px) {
    .hp-about-flex {
        flex-direction: row;
        gap: 3rem;
    }
    .hp-about-flex > .md\:w-1\/2,
    .hp-about-flex > .hp-about-img-col { width: 50%; }
}

/* Products grid: 2 cols mobile → 4 cols desktop */
.hp-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 1024px) {
    .hp-products-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

/* ── About Section ── */
.hp-about {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fff, #f0fdf4);
    position: relative;
    overflow: hidden;
}
.hp-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef9c3;
    padding: 8px 16px;
    border-radius: 9999px;
    margin-bottom: 16px;
}
.hp-about-badge span {
    color: #854d0e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}
.hp-about-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
}
.hp-about-text {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.75;
}
.hp-about-text p {
    margin-bottom: 0;
}
.hp-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.hp-about-stat {
    text-align: center;
    padding: 18px 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.hp-about-stat-num {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.1;
}
.hp-about-stat-label {
    font-size: 0.8125rem;
    color: #64748b;
    margin-top: 6px;
    font-weight: 500;
}
.hp-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(to right, #d97706, #ea580c);
    color: #fff;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 9999px;
    box-shadow: 0 4px 14px rgba(217,119,6,.35);
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.hp-about-btn:hover {
    background: linear-gradient(to right, #b45309, #c2410c);
    box-shadow: 0 6px 20px rgba(217,119,6,.45);
}
.hp-about-img-wrap {
    position: relative;
}
.hp-about-img-main {
    position: relative;
    z-index: 10;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,.15);
    border: 8px solid #fff;
}
.hp-about-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.hp-about-img-float {
    position: absolute;
    bottom: -32px;
    left: -32px;
    width: 208px;
    height: 192px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    border: 4px solid #fff;
    z-index: 20;
}
.hp-about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hp-about-img-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #fde68a, #fed7aa);
    border-radius: 24px;
    transform: rotate(3deg) scale(1.05);
    z-index: -1;
}

/* ── Farm to Family ── */
.hp-farm {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.hp-farm-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hp-farm-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hp-farm-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,.95), rgba(255,255,255,.5), rgba(255,255,255,.95));
}
.hp-farm-heading-badge {
    color: #d97706;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    drop-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.hp-farm-card {
    position: relative;
    background: rgba(255,255,255,.9);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 24px;
    height: 100%;
    border: 2px solid #e2e8f0;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.hp-farm-card:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,.12);
    border-color: #f59e0b;
}
.hp-farm-step-num {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    background: var(--step-color, #22c55e);
}
.hp-farm-step-num span {
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
}
.hp-farm-icon-wrap {
    background: linear-gradient(to bottom right, #fff, #f8fafc);
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    border: 2px solid #e2e8f0;
}
.hp-farm-icon-wrap img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.hp-farm-arrow {
    display: none;
    position: absolute;
    top: 50%;
    right: -12px;
    width: 24px;
    height: 2px;
    background: linear-gradient(to right, #f59e0b, transparent);
    z-index: 20;
}
@media (min-width: 768px) {
    .hp-farm-arrow { display: block; }
}

/* ── Dairy Features ── */
.hp-features {
    padding: 96px 0;
    background: linear-gradient(to bottom right, #fffbeb, #fff7ed, #fff);
    position: relative;
    overflow: hidden;
}
.hp-features-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border: 1px solid #fde68a;
    position: relative;
    overflow: hidden;
}
.hp-features-icon-wrap {
    background: #fef3c7;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.hp-features-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}
.hp-features-bullet-icon {
    flex-shrink: 0;
    margin-top: 4px;
    width: 20px;
    height: 20px;
    background: #dcfce7;
    color: #15803d;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}
.hp-features-bullet-text {
    color: #334155;
    font-weight: 500;
}
/* TinyMCE-rendered bullet list inside cattle-health card */
.hp-features-bullets-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hp-features-bullets-wrap ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #334155;
    font-weight: 500;
}
.hp-features-bullets-wrap ul li::before {
    content: '✓';
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: #dcfce7;
    color: #15803d;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}
.hp-cattle-mockup {
    background: linear-gradient(to bottom right, #0f172a, #1e293b);
    border-radius: 2.5rem;
    padding: 8px;
    box-shadow: 0 25px 50px rgba(0,0,0,.25);
    border: 4px solid #334155;
}
.hp-cattle-mockup-inner {
    background: #0f172a;
    border-radius: 2rem;
    overflow: hidden;
}
.hp-cattle-mockup-header {
    background: #1e293b;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
.hp-cattle-mockup-item {
    background: #1e293b;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid #334155;
}
.hp-cattle-quote {
    position: absolute;
    bottom: -32px;
    right: -16px;
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    max-width: 190px;
    border-left: 4px solid #f59e0b;
}

/* ── Milk Purity ── */
.hp-purity {
    padding: 80px 0;
    background: linear-gradient(to bottom right, #eff6ff, #fff, #eff6ff);
    position: relative;
    overflow: hidden;
}
.hp-purity-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 8px 16px;
    border-radius: 9999px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hp-purity-heading {
    font-size: 3.75rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.15;
}
.hp-purity-heading span {
    font-size: 2.25rem;
    font-weight: 700;
    color: #475569;
}
.hp-purity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.hp-purity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    transition: box-shadow 0.2s;
}
.hp-purity-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.hp-purity-item-icon {
    padding: 12px;
    border-radius: 12px;
    font-size: 1.5rem;
    line-height: 1;
}
.hp-purity-item-label {
    font-weight: 700;
    color: #334155;
}
.hp-purity-badge-a2 {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 20;
    background: rgba(255,255,255,.9);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    border: 1px solid #fff;
    text-align: center;
}
.hp-purity-badge-fresh {
    position: absolute;
    bottom: -16px;
    left: -16px;
    z-index: 20;
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ── Products Section ── */
.hp-products {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.hp-products-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hp-products-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.hp-products-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(255,255,255,.95), rgba(255,255,255,.3), rgba(255,255,255,.95));
}
.hp-tab-btn {
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    color: #475569;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
}
.hp-tab-btn:hover {
    color: #0f172a;
    background: #fef3c7;
}
.hp-tab-btn.active {
    background: linear-gradient(to right, #f59e0b, #f97316);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(245,158,11,.4);
}
/* ── Product Cards ── */
.hp-product-card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    border: 1.5px solid #f1f5f9;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}
.hp-product-card:hover {
    box-shadow: 0 20px 48px rgba(0,0,0,.13);
    transform: translateY(-6px);
    border-color: #bbf7d0;
}
.hp-product-img {
    height: 210px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 0;
    overflow: hidden;
    margin: 0;
    position: relative;
    flex-shrink: 0;
}
.hp-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 10px;
    transition: transform 0.5s ease;
}
.hp-product-card:hover .hp-product-img img {
    transform: scale(1.07);
}
.hp-product-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    color: #15803d;
    padding: 3px 10px;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(34,197,94,0.25);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.hp-product-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(239,68,68,.35);
}
.hp-product-card .block {
    flex: 1;
}
.hp-product-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    padding: 14px 16px 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.45;
    min-height: 52px;
}
.hp-product-card > div:last-child {
    padding: 10px 16px 16px;
}
.hp-product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #15803d;
}
.hp-product-mrp {
    font-size: 0.8rem;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: line-through;
    display: block;
    line-height: 1.2;
}
.hp-product-cart-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(34,197,94,.35);
    transition: all 0.22s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.hp-product-cart-btn:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 6px 20px rgba(34,197,94,.5);
    transform: scale(1.12);
    color: #fff;
}
.hp-product-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── Testimonials ── */
.hp-testi {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffbeb 0%, #f0fdf4 100%);
}
.hp-testi-card {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    border-top: 3px solid #f59e0b;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s;
    height: 100%;
}
.hp-testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0,0,0,.11);
}
/* Top row: stars left, big quote right */
.hp-testi-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.hp-testi-stars {
    display: flex;
    gap: 3px;
}
.hp-testi-star {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.hp-testi-star--on  { color: #fbbf24; }
.hp-testi-star--off { color: #e2e8f0; }
.hp-testi-bigquote {
    font-size: 3.5rem;
    line-height: 1;
    color: #fde68a;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 900;
    margin-top: -8px;
    -webkit-user-select: none;
    user-select: none;
    letter-spacing: -2px;
}
/* Message */
.hp-testi-message {
    color: #475569;
    font-size: 0.925rem;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 20px;
}
/* Author row */
.hp-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}
.hp-testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #fde68a;
}
.hp-testi-avatar-initial {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 2px solid #fde68a;
}
.hp-testi-name  { font-weight: 700; color: #0f172a; font-size: 0.975rem; line-height: 1.3; }
.hp-testi-desig { font-size: 0.8rem; color: #94a3b8; margin-top: 2px; }

/* ── CTA / Consultation ── */
.hp-cta {
    padding: 80px 0;
    background: linear-gradient(to bottom right, #f0fdf4, #ecfdf5, #f0fdfa);
    position: relative;
    overflow: hidden;
}
.hp-cta-box {
    background: linear-gradient(to bottom right, #059669, #0d9488, #0891b2);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 25px 50px rgba(0,0,0,.15);
    max-width: 64rem;
    margin: 0 auto;
    border: 4px solid #fff;
}
.hp-cta-input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 16px;
    background: #fff;
    color: #0f172a;
    border: none;
    outline: none;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    font-size: 1rem;
    transition: box-shadow 0.2s;
}
.hp-cta-input:focus {
    box-shadow: 0 0 0 4px rgba(251,191,36,.4);
}
.hp-cta-input::placeholder { color: #94a3b8; }
.hp-cta-label {
    display: block;
    color: #d1fae5;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
    padding-left: 4px;
}
.hp-cta-submit {
    background: linear-gradient(to right, #f59e0b, #f97316);
    color: #fff;
    font-weight: 700;
    padding: 16px 64px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(245,158,11,.4);
    font-size: 1.125rem;
    transition: all 0.2s;
    width: 100%;
}
.hp-cta-submit:hover {
    background: linear-gradient(to right, #d97706, #ea580c);
    box-shadow: 0 10px 25px rgba(245,158,11,.5);
}
@media (min-width: 768px) {
    .hp-cta-submit { width: auto; }
}

/* ── Deco image position helpers ── */
.hp-deco-tr     { top: 40px; right: 40px; }
.hp-deco-bl     { bottom: 40px; left: 40px; }
.hp-deco-cta-tr { top: 40px; right: 40px; opacity: 0.1; }
.hp-deco-cta-bl { bottom: 40px; left: 40px; opacity: 0.1; }

/* ── Farm step number colours (fallback @empty blocks) ── */
.hp-step-green  { --step-color: #22c55e; }
.hp-step-blue   { --step-color: #3b82f6; }
.hp-step-purple { --step-color: #a855f7; }
.hp-step-amber  { --step-color: #f59e0b; }

/* ── Shared home page utility ── */
.hp-section-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}
.hp-section-badge {
    color: #d97706;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.hp-section-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}
.hp-section-sub {
    color: #475569;
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.75;
}
.hp-section-center {
    text-align: center;
    margin-bottom: 64px;
}
.hp-deco-img {
    position: absolute;
    pointer-events: none;
    opacity: 0.05;
}
.hp-deco-img img {
    width: 256px;
    height: 256px;
    object-fit: contain;
}

/* ── Hero Slider — Swiper nav overrides ── */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    --swiper-navigation-color: #fff;
    background: rgba(0,0,0,.28);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    transition: background 0.2s;
}
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: rgba(245,158,11,.8);
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}
.hero-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}
.hero-swiper .swiper-pagination-bullet-active {
    background: #f59e0b;
    opacity: 1;
}

/* ══════════════════════════════════════════════════════
   HOME PAGE — RESPONSIVE  (hp-* classes)
   Breakpoints: 1024px (tablet) · 768px (mobile) · 480px (small phone)
══════════════════════════════════════════════════════ */

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
    .hp-about-heading   { font-size: 2.5rem; }
    .hp-purity-heading  { font-size: 3rem; }
    .hp-section-heading { font-size: 2.5rem; }
    .hp-deco-img        { display: none; }
    .hp-cattle-quote    { display: none; }
    .hp-features-card   { padding: 24px; }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
    /* Hero Swiper — hide arrows on mobile (users swipe) */
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next { display: none; }

    /* Banner strip — 2×2 grid with wrapping text */
    .hp-strip { padding: 14px 0; overflow: hidden; }
    .hp-strip-inner { padding: 0 12px; }
    .hp-strip-items {
        flex-wrap: wrap !important;
        justify-content: center;
        overflow-x: hidden !important;
        gap: 8px;
    }
    .hp-strip-item {
        width: calc(50% - 6px);
        max-width: calc(50% - 6px);
        justify-content: center;
        flex-shrink: 1 !important;
        gap: 6px;
        padding: 4px 2px;
    }
    .hp-strip-item img { width: 28px; height: 28px; flex-shrink: 0; }
    .hp-strip-item span {
        font-size: 0.75rem;
        white-space: normal !important;
        word-break: break-word;
        overflow-wrap: break-word;
        text-align: center;
        line-height: 1.3;
    }
    .hp-strip-divider { display: none !important; }

    /* Section vertical spacing */
    .hp-about,
    .hp-farm,
    .hp-features,
    .hp-purity,
    .hp-products,
    .hp-testi,
    .hp-cta        { padding: 48px 0; }
    .hp-section-center { margin-bottom: 40px; }

    /* Headings */
    .hp-about-heading   { font-size: 1.875rem; }
    .hp-purity-heading  { font-size: 2rem; }
    .hp-purity-heading span { font-size: 1.5rem; }
    .hp-section-heading { font-size: 1.875rem; }
    .hp-section-sub     { font-size: 1rem; }

    /* About */
    .hp-deco-img          { display: none; }
    .hp-about-stats       { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .hp-about-stat        { padding: 12px 8px; }
    .hp-about-stat-num    { font-size: 1.5rem; }
    .hp-about-stat-label  { font-size: 0.75rem; }
    .hp-about-img-float   { display: none; }
    .hp-about-img-main img { height: 260px; }
    .hp-about-img-bg      { transform: rotate(2deg) scale(1.03); }

    /* Farm */
    .hp-farm-card { padding: 20px 16px; }

    /* Features */
    .hp-features-card { padding: 20px; }
    .hp-features-card h3 { font-size: 1.625rem; }
    .hp-features-card > .relative > div > p.text-lg { font-size: 1rem; }

    /* Purity */
    .hp-purity-grid { grid-template-columns: 1fr 1fr; }
    .hp-purity-badge-a2   { top: 12px; right: 12px; padding: 10px; }
    .hp-purity-badge-fresh { bottom: -8px; left: -8px; padding: 10px; gap: 8px; }

    /* Testimonials */
    .hp-testi-card { padding: 24px; }

    /* CTA */
    .hp-cta-box { padding: 28px 20px; }
}

/* ── Small phone (≤ 480px) ── */
@media (max-width: 480px) {
    /* Hero Swiper — smallest arrows */
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        --swiper-navigation-size: 16px;
        width: 30px;
        height: 30px;
        background: rgba(0,0,0,.22);
    }
    .hero-swiper .swiper-button-prev::after,
    .hero-swiper .swiper-button-next::after { font-size: 14px; }

    /* Banner strip: tighter 2-column */
    .hp-strip { padding: 12px 0; }
    .hp-strip-item  { width: calc(50% - 6px); max-width: calc(50% - 6px); gap: 5px; }
    .hp-strip-item img  { width: 24px; height: 24px; }
    .hp-strip-item span { font-size: 0.7rem; white-space: normal !important; word-break: break-word; text-align: center; line-height: 1.3; }

    /* Headings */
    .hp-about-heading   { font-size: 1.625rem; }
    .hp-purity-heading  { font-size: 1.75rem; }
    .hp-purity-heading span { font-size: 1.25rem; }
    .hp-section-heading { font-size: 1.625rem; }
    .hp-section-sub     { font-size: 0.9375rem; }

    /* About — stats 2 col on very small */
    .hp-about-stats  { grid-template-columns: 1fr 1fr; gap: 8px; }
    .hp-about-stat   { padding: 10px 4px; }
    .hp-about-stat-num { font-size: 1.25rem; }
    .hp-about-stat-label { font-size: 0.6875rem; }
    .hp-about-img-main img { height: 200px; }

    /* Farm */
    .hp-farm-card { padding: 16px 14px; }
    .hp-farm-step-num { width: 44px; height: 44px; top: -12px; right: -12px; }
    .hp-farm-step-num span { font-size: 0.9rem; }

    /* Features */
    .hp-features-card { padding: 16px; }
    .hp-features-card h3 { font-size: 1.375rem; }

    /* Purity — single column, hide floating badge */
    .hp-purity-grid { grid-template-columns: 1fr; }
    .hp-purity-badge-a2 { display: none; }

    /* Products */
    .hp-tab-btn { padding: 8px 14px; font-size: 0.8rem; }
    .hp-product-img { height: 180px; }
    .hp-product-name { font-size: 1rem; }
    .hp-product-price { font-size: 1.25rem; }

    /* Testimonials */
    .hp-testi-card { padding: 20px 14px; }

    /* CTA */
    .hp-cta-box    { padding: 20px 12px; }
    .hp-cta-submit { font-size: 1rem; padding: 14px 32px; }

    /* Section spacing tighter on phones */
    .hp-about,
    .hp-farm,
    .hp-features,
    .hp-purity,
    .hp-products,
    .hp-testi,
    .hp-cta        { padding: 36px 0; }
    .hp-section-center { margin-bottom: 32px; }
}

/* ════════════════════════════════════════════════════════════════
   LATEST BLOGS SECTION
   ════════════════════════════════════════════════════════════════ */
.hp-blogs {
    padding: 80px 0;
    background: #f8fafc;
}
@media (max-width: 480px) {
    .hp-blogs { padding: 40px 0 0 0; }
}

/* Blog Card */
.hp-blog-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    transition: transform .3s, box-shadow .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.hp-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.hp-blog-img-wrap {
    display: block;
    overflow: hidden;
    height: 200px;
}
.hp-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.hp-blog-card:hover .hp-blog-img {
    transform: scale(1.05);
}
.hp-blog-img-ph {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hp-blog-img-ph svg {
    width: 48px;
    height: 48px;
    color: #d97706;
    opacity: .6;
}
.hp-blog-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hp-blog-date {
    font-size: 0.75rem;
    color: #f59e0b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .5rem;
}
.hp-blog-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: .625rem;
}
.hp-blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}
.hp-blog-title a:hover { color: #d97706; }
.hp-blog-excerpt {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
}
.hp-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #d97706;
    text-decoration: none;
    transition: gap .2s, color .2s;
}
.hp-blog-link:hover {
    color: #b45309;
    gap: 10px;
}

/* ════════════════════════════════════════════════════════════════
   OWL CAROUSEL — Shared overrides (Blogs + Testimonials)
   ════════════════════════════════════════════════════════════════ */
.hp-blog-owl,
.hp-testi-owl {
    padding-bottom: 48px;  /* room for dots */
}

/* Equal-height cards: stretch all items to the tallest in the row */
.hp-blog-owl .owl-stage,
.hp-testi-owl .owl-stage {
    display: flex;
    align-items: stretch;
}
.hp-blog-owl .owl-item,
.hp-testi-owl .owl-item {
    display: flex;
    flex: 1 0 auto;
}
.hp-blog-owl .owl-item .hp-blog-card,
.hp-testi-owl .owl-item .hp-testi-card {
    height: 100%;
}

/* Nav buttons */
.hp-blog-owl .owl-nav button,
.hp-testi-owl .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 42px;
    height: 42px;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 12px rgba(0,0,0,.12);
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #0f172a !important;
    transition: background .2s, box-shadow .2s;
}
.hp-blog-owl .owl-nav button:hover,
.hp-testi-owl .owl-nav button:hover {
    background: #f59e0b !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(245,158,11,.35);
}
.hp-blog-owl .owl-nav button span,
.hp-testi-owl .owl-nav button span { display: none; }
.hp-blog-owl .owl-prev,
.hp-testi-owl .owl-prev { left: -20px; }
.hp-blog-owl .owl-next,
.hp-testi-owl .owl-next { right: -20px; }

/* Dots */
.hp-blog-owl .owl-dots,
.hp-testi-owl .owl-dots {
    text-align: center;
    margin-top: 28px;
}
.hp-blog-owl .owl-dot span,
.hp-testi-owl .owl-dot span {
    width: 8px;
    height: 8px;
    background: #cbd5e1 !important;
    border-radius: 50%;
    margin: 0 4px;
    transition: background .2s, width .2s;
}
.hp-blog-owl .owl-dot.active span,
.hp-testi-owl .owl-dot.active span {
    background: #f59e0b !important;
    width: 24px;
    border-radius: 4px;
}

/* ── Blog carousel — phone only (0-575px = 1 item shown) ── */
@media (max-width: 575px) {
    .hp-blog-owl .owl-stage-outer { height: auto !important; }
    .hp-blog-owl .owl-stage       { display: block !important; }
    .hp-blog-owl .owl-item        { height: auto !important; }
    .blog-card-item               { height: auto !important; }
    .hp-blog-owl                  { padding-bottom: 36px; }
}

/* ── Testimonial carousel — phone only (0-639px = 1 item shown) ── */
@media (max-width: 639px) {
    .hp-testi-owl .owl-stage-outer { height: auto !important; }
    .hp-testi-owl .owl-stage       { display: block !important; }
    .hp-testi-owl .owl-item        { height: auto !important; }
    .hp-testi-card                 { height: auto !important; }
    .hp-testi-owl                  { padding-bottom: 36px; }
}

/* ================================================================
   FRANCHISE SECTION
   ================================================================ */
.hp-franchise {
    background: #111827;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.hp-franchise::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(245,158,11,.13), transparent 70%);
    pointer-events: none;
}

.hp-franchise::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(245,158,11,.08), transparent 70%);
    pointer-events: none;
}

.hp-franchise-header {
    text-align: center;
    margin-bottom: 56px;
}

.hp-franchise-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,.12);
    color: #fbbf24;
    border: 1px solid rgba(245,158,11,.3);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .4px;
    margin-bottom: 20px;
}

.hp-franchise-heading {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 16px;
}

.hp-franchise-sub {
    font-size: 16px;
    color: #94a3b8;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

.hp-franchise-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

@media (max-width: 1024px) {
    .hp-franchise-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .hp-franchise-cards { grid-template-columns: 1fr; }
}

.hp-franchise-card {
    background: #1e2535;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, border-color .3s, box-shadow .3s;
}

.hp-franchise-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.hp-franchise-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245,158,11,.35);
    box-shadow: 0 24px 48px rgba(0,0,0,.35);
}

.hp-franchise-card:hover::after { transform: scaleX(1); }

.hp-franchise-acronym {
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.hp-franchise-name {
    font-size: 13px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.hp-franchise-desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.75;
    margin: 0;
}

.hp-franchise-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hp-franchise-btn-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 24px rgba(245,158,11,.3);
}

.hp-franchise-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(245,158,11,.45);
    color: #fff;
    text-decoration: none;
}

.hp-franchise-btn-secondary {
    background: transparent;
    color: #fbbf24;
    padding: 13px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 2px solid rgba(245,158,11,.35);
    transition: border-color .2s, background .2s;
}

.hp-franchise-btn-secondary:hover {
    border-color: #f59e0b;
    background: rgba(245,158,11,.1);
    color: #fbbf24;
    text-decoration: none;
}

/* ── Franchise section mobile overrides (must come AFTER base CSS) ── */
@media (max-width: 767px) {
    .hp-franchise { padding: 56px 0; }
    .hp-franchise-header { margin-bottom: 32px; }
    .hp-franchise-card { padding: 24px 20px; }
    .hp-franchise-acronym { font-size: 36px; letter-spacing: 0; }
    .hp-franchise-btn-primary,
    .hp-franchise-btn-secondary { padding: 11px 22px; font-size: 0.9rem; }
}
@media (max-width: 480px) {
    .hp-franchise { padding: 40px 0; }
    .hp-franchise-header { margin-bottom: 24px; }
    .hp-franchise-card { padding: 18px 16px; }
    .hp-franchise-acronym { font-size: 26px; margin-bottom: 10px; }
    .hp-franchise-name { font-size: 12px; }
    .hp-franchise-desc { font-size: 13px; line-height: 1.6; }
    .hp-franchise-btn-primary,
    .hp-franchise-btn-secondary { padding: 10px 18px; font-size: 0.875rem; width: 100%; justify-content: center; }
    .hp-franchise-btns { flex-direction: column; align-items: center; gap: 12px; }
}

/* ================================================================
   FRANCHISE PAGES  (frn-*)
   ================================================================ */

.frn-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.frn-section { padding: 80px 0; }
.frn-section--light { background: #f8fafc; }
.frn-section--white { background: #fff; }

.frn-section-label { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.frn-section-bar { width: 36px; height: 4px; border-radius: 2px; background: #f59e0b; flex-shrink: 0; }
.frn-section-text { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #f59e0b; }
.frn-section-title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: #111827; margin: 0 0 12px; line-height: 1.2; }
.frn-section-desc { font-size: 16px; color: #64748b; max-width: 600px; line-height: 1.75; margin: 0 0 48px; }

/* Hero */
.frn-hero { position: relative; min-height: 520px; display: flex; align-items: center; overflow: hidden; }
.frn-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.frn-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(17,24,39,.82) 0%, rgba(17,24,39,.6) 100%); }
.frn-hero-body { position: relative; z-index: 2; max-width: 1200px; width: 100%; margin: 0 auto; padding: 100px 24px 80px; }
.frn-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,158,11,.18); border: 1px solid rgba(245,158,11,.4); color: #fbbf24; padding: 6px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.frn-hero-title { font-size: clamp(32px, 5vw, 60px); font-weight: 900; color: #fff; line-height: 1.15; margin: 0 0 18px; max-width: 700px; }
.frn-hero-highlight { background: linear-gradient(135deg, #f59e0b, #fbbf24); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.frn-hero-subtitle { font-size: 18px; color: rgba(255,255,255,.8); max-width: 560px; line-height: 1.7; margin: 0 0 32px; }
.frn-hero-btn { display: inline-flex; align-items: center; gap: 10px; background: #f59e0b; color: #fff; padding: 14px 32px; border-radius: 999px; font-weight: 700; font-size: 15px; text-decoration: none; box-shadow: 0 8px 24px rgba(245,158,11,.4); transition: transform .2s, box-shadow .2s; }
.frn-hero-btn svg { width: 1.1rem; height: 1.1rem; }
.frn-hero-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(245,158,11,.5); color: #fff; text-decoration: none; }

/* Stats strip */
.frn-intro-strip { background: #111827; padding: 28px 0; }
.frn-stats-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.frn-stat { display: flex; flex-direction: column; align-items: center; padding: 12px 40px; }
.frn-stat-num { font-size: 32px; font-weight: 900; color: #f59e0b; line-height: 1; }
.frn-stat-label { font-size: 12px; color: #94a3b8; font-weight: 500; margin-top: 4px; text-transform: uppercase; letter-spacing: .5px; }
.frn-stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* Model Cards */
.frn-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-top: 20px; }
@media (max-width: 1024px) { .frn-cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .frn-cards-grid { grid-template-columns: 1fr; } }

.frn-card { background: #fff; border-radius: 20px; padding: 28px; border: 2px solid #e2e8f0; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; position: relative; overflow: visible; }
.frn-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.1); }
.frn-card--amber:hover { border-color: #fde68a; }
.frn-card--blue:hover  { border-color: #bfdbfe; }
.frn-card--featured { border-color: #16a34a; box-shadow: 0 8px 32px rgba(22,163,74,.15); }
.frn-card-popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg,#16a34a,#15803d); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 18px; border-radius: 999px; white-space: nowrap; box-shadow: 0 4px 12px rgba(22,163,74,.35); }

/* Card top */
.frn-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.frn-card-icon-wrap { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.frn-card-icon-wrap--amber { background: #fef3c7; }
.frn-card-icon-wrap--green { background: #dcfce7; }
.frn-card-icon-wrap--blue  { background: #dbeafe; }
.frn-card-badge { font-size: 22px; font-weight: 900; border-radius: 8px; padding: 2px 10px; display: inline-block; }
.frn-card-badge--amber { background: #fef3c7; color: #92400e; }
.frn-card-badge--green { background: #dcfce7; color: #166534; }
.frn-card-badge--blue  { background: #dbeafe; color: #1e40af; }
.frn-card-fullname { font-size: 11px; color: #94a3b8; margin-top: 3px; font-weight: 500; line-height: 1.3; }

/* Investment bar */
.frn-card-invest-bar { border-radius: 12px; padding: 14px 16px; margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.frn-card-invest-bar--amber { background: #fffbeb; border: 1px solid #fde68a; }
.frn-card-invest-bar--green { background: #f0fdf4; border: 1px solid #bbf7d0; }
.frn-card-invest-bar--blue  { background: #eff6ff; border: 1px solid #bfdbfe; }
.frn-card-invest-row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; border-bottom: 1px dashed rgba(0,0,0,.06); padding-bottom: 8px; }
.frn-card-invest-label { color: #64748b; font-weight: 500; }
.frn-card-invest-val { font-weight: 800; color: #111827; font-size: 13px; }

.frn-card-desc  { font-size: 13.5px; color: #64748b; line-height: 1.7; margin: 0 0 18px; flex-grow: 1; }
.frn-card-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
.frn-card-list li { font-size: 13px; color: #374151; display: flex; align-items: center; gap: 8px; }

.frn-check { width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.frn-check--amber { background: #fef3c7; color: #92400e; }
.frn-check--green { background: #dcfce7; color: #166534; }
.frn-check--blue  { background: #dbeafe; color: #1e40af; }

.frn-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; border-top: 1px solid #f1f5f9; padding-top: 18px; margin-top: auto; }
.frn-card-ideal  { font-size: 11px; color: #94a3b8; line-height: 1.4; }
.frn-card-btn { font-size: 13px; font-weight: 700; padding: 9px 20px; border-radius: 999px; text-decoration: none; transition: all .2s; white-space: nowrap; }
.frn-card-btn:hover { text-decoration: none; transform: translateY(-1px); }
.frn-card-btn--amber { background: #f59e0b; color: #fff; box-shadow: 0 4px 12px rgba(245,158,11,.3); }
.frn-card-btn--green { background: #16a34a; color: #fff; box-shadow: 0 4px 12px rgba(22,163,74,.3); }
.frn-card-btn--blue  { background: #2563eb; color: #fff; box-shadow: 0 4px 12px rgba(37,99,235,.3); }

/* Why AS Dairy grid — horizontal (icon left, text right) */
.frn-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 1024px) { .frn-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .frn-why-grid { grid-template-columns: 1fr; } }
.frn-why-card { background: #fff; border-radius: 18px; padding: 20px 22px; border: 1px solid #e2e8f0; transition: all .3s; display: flex; align-items: flex-start; gap: 16px; }
.frn-why-card:hover { border-color: #fde68a; box-shadow: 0 8px 28px rgba(0,0,0,.07); transform: translateY(-2px); }
.frn-why-icon { font-size: 26px; width: 52px; height: 52px; min-width: 52px; display: flex; align-items: center; justify-content: center; background: #fffbeb; border: 1px solid #fde68a; border-radius: 14px; flex-shrink: 0; }
.frn-why-icon-img { width: 52px; height: 52px; min-width: 52px; object-fit: contain; border-radius: 14px; background: #fffbeb; border: 1px solid #fde68a; padding: 8px; flex-shrink: 0; }
.frn-why-text { flex: 1; min-width: 0; }
.frn-why-title { font-size: 15px; font-weight: 800; color: #111827; margin: 0 0 6px; line-height: 1.35; }
.frn-why-desc { font-size: 13px; color: #64748b; line-height: 1.65; margin: 0; }

/* Hero secondary button + CTA ghost */
.frn-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.frn-hero-btn-ghost { display: inline-flex; align-items: center; background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.35); color: #fff; padding: 12px 28px; border-radius: 999px; font-weight: 700; font-size: 15px; text-decoration: none; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); transition: all .2s; }
.frn-hero-btn-ghost:hover { background: rgba(255,255,255,.22); color: #fff; text-decoration: none; }
.frn-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.frn-cta-btn-ghost { display: inline-flex; align-items: center; border: 2px solid rgba(255,255,255,.3); color: rgba(255,255,255,.7); padding: 12px 28px; border-radius: 999px; font-weight: 700; font-size: 15px; text-decoration: none; transition: all .2s; }
.frn-cta-btn-ghost:hover { border-color: rgba(255,255,255,.6); color: #fff; text-decoration: none; }

/* Comparison table: amount style */
.frn-cmp-amount { font-size: 14px; font-weight: 800; color: #111827; }

/* Comparison Table */
.frn-cmp-wrap { overflow-x: auto; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,.07); }
.frn-cmp-table { width: 100%; border-collapse: collapse; background: #fff; font-size: 14px; }
.frn-cmp-th { padding: 20px 16px; text-align: center; border-bottom: 2px solid #e2e8f0; }
.frn-cmp-th--feat  { text-align: left; min-width: 180px; }
.frn-cmp-th--amber { background: #fffbeb; border-bottom-color: #f59e0b; }
.frn-cmp-th--green { background: #f0fdf4; border-bottom-color: #16a34a; }
.frn-cmp-th--blue  { background: #eff6ff; border-bottom-color: #2563eb; }
.frn-cmp-popular-badge { background: #16a34a; color: #fff; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 999px; margin-bottom: 8px; display: inline-block; }
.frn-cmp-col-head { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.frn-cmp-col-icon { font-size: 24px; }
.frn-cmp-col-tag  { font-size: 20px; font-weight: 900; color: #111827; }
.frn-cmp-col-sub  { font-size: 11px; color: #64748b; line-height: 1.4; }
.frn-cmp-feat-label { font-size: 13px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: .5px; }
.frn-cmp-tr { border-bottom: 1px solid #f1f5f9; }
.frn-cmp-tr--alt { background: #f8fafc; }
.frn-cmp-td { padding: 14px 16px; text-align: center; color: #374151; }
.frn-cmp-td--feat { text-align: left; font-weight: 600; color: #111827; font-size: 13px; }
.frn-cmp-td--pop { background: rgba(22,163,74,.04); }
.frn-cmp-td--cta-cell { padding: 20px 16px; }
.frn-cmp-feat-icon { margin-right: 6px; }
.frn-cmp-badge { display: inline-block; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.frn-cmp-badge--amber { background: #fef3c7; color: #92400e; }
.frn-cmp-badge--green { background: #dcfce7; color: #166534; }
.frn-cmp-badge--blue  { background: #dbeafe; color: #1e40af; }
.frn-cmp-pill { display: inline-block; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 6px; }
.frn-cmp-pill--low  { background: #dcfce7; color: #166534; }
.frn-cmp-pill--mid  { background: #fef3c7; color: #92400e; }
.frn-cmp-pill--high { background: #fee2e2; color: #991b1b; }
.frn-cmp-check { font-size: 18px; font-weight: 700; }
.frn-cmp-check--amber { color: #f59e0b; }
.frn-cmp-check--green { color: #16a34a; }
.frn-cmp-check--blue  { color: #2563eb; }
.frn-cmp-cta { display: inline-block; padding: 10px 20px; border-radius: 999px; font-size: 13px; font-weight: 700; text-decoration: none; transition: opacity .2s; }
.frn-cmp-cta:hover { opacity: .85; text-decoration: none; }
.frn-cmp-cta--amber { background: #f59e0b; color: #fff; }
.frn-cmp-cta--green { background: #16a34a; color: #fff; }
.frn-cmp-cta--blue  { background: #2563eb; color: #fff; }

/* How it Works steps */
.frn-steps { display: flex; align-items: stretch; gap: 8px; flex-wrap: wrap; }
@media (max-width: 768px) { .frn-steps { flex-direction: column; align-items: stretch; } .frn-step-arrow { transform: rotate(90deg); align-self: center; } }
.frn-step { background: #fff; border-radius: 16px; padding: 28px 24px; flex: 1; min-width: 180px; border: 1px solid #e2e8f0; box-shadow: 0 2px 12px rgba(0,0,0,.04); display: flex; flex-direction: column; }
.frn-step-num   { font-size: 36px; font-weight: 900; color: #f59e0b; line-height: 1; margin-bottom: 12px; text-align: center; }
.frn-step-title { font-size: 16px; font-weight: 700; color: #111827; margin: 0 0 8px; }
.frn-step-desc  { font-size: 13px; color: #64748b; line-height: 1.65; margin: 0; flex: 1; }
.frn-step-arrow { font-size: 28px; color: #cbd5e1; align-self: center; flex-shrink: 0; }

/* CTA section */
.frn-cta-section { background: #f8fafc; padding: 80px 0; }
.frn-cta-box { background: linear-gradient(135deg, #111827 0%, #1e293b 100%); border-radius: 24px; padding: 64px 48px; text-align: center; position: relative; overflow: hidden; }
.frn-cta-deco { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(245,158,11,.1); pointer-events: none; }
.frn-cta-deco--tr { top: -80px; right: -80px; }
.frn-cta-deco--bl { bottom: -80px; left: -80px; }
.frn-cta-buffalo { position: absolute; right: 32px; bottom: 0; height: 140px; opacity: .3; pointer-events: none; }
.frn-cta-content { position: relative; z-index: 2; }
.frn-cta-icon  { font-size: 40px; margin-bottom: 16px; }
.frn-cta-title { font-size: clamp(22px, 3vw, 36px); font-weight: 800; color: #fff; margin: 0 0 12px; }
.frn-cta-text  { font-size: 16px; color: #94a3b8; margin: 0 auto 32px; max-width: 500px; line-height: 1.7; }
.frn-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: #f59e0b; color: #fff; padding: 14px 36px; border-radius: 999px; font-weight: 700; font-size: 15px; text-decoration: none; box-shadow: 0 8px 24px rgba(245,158,11,.4); transition: transform .2s, box-shadow .2s; }
.frn-cta-btn svg { width: 1.1rem; height: 1.1rem; }
.frn-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(245,158,11,.5); color: #fff; text-decoration: none; }

/* ================================================================
   FRANCHISE MODEL PAGE  (frn-m-*)
   ================================================================ */

.frn-m-hero { min-height: 440px; }

.frn-m-breadcrumb { display: flex; align-items: center; gap: 6px; margin-bottom: 20px; font-size: 13px; }
.frn-m-breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.frn-m-breadcrumb a:hover { color: #fff; }
.frn-m-breadcrumb span { color: rgba(255,255,255,.4); }

.frn-m-marquee-wrap { padding: 14px 0; overflow: hidden; white-space: nowrap; }
.frn-m-marquee { display: inline-block; animation: frn-marquee 20s linear infinite; }
@keyframes frn-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.frn-m-marquee-item { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .5px; margin-right: 32px; }
.frn-m-marquee-dot  { color: rgba(255,255,255,.5); margin-right: 32px; }

.frn-m-body { background: #f8fafc; padding: 0 0 80px; }
.frn-m-body-inner { max-width: 1200px; margin: 0 auto; padding: 48px 24px 0; display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
@media (max-width: 1024px) { .frn-m-body-inner { grid-template-columns: 1fr; } .frn-m-sidebar { order: 2; } .frn-m-content { order: 1; } }

.frn-m-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 20px; }
.frn-m-sidebar-card { background: #fff; border-radius: 16px; border: 2px solid #e2e8f0; overflow: hidden; }
.frn-m-sidebar-card-head { display: flex; align-items: center; gap: 10px; padding: 16px 20px; color: #fff; }
.frn-m-sidebar-card-icon  { font-size: 20px; }
.frn-m-sidebar-card-label { font-size: 14px; font-weight: 700; }
.frn-m-sidebar-invest { padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; }
.frn-m-sidebar-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; border-bottom: 1px dashed #f1f5f9; padding-bottom: 10px; }
.frn-m-sidebar-row:last-child { border-bottom: none; padding-bottom: 0; }
.frn-m-sidebar-key { color: #64748b; }
.frn-m-sidebar-val { font-weight: 700; color: #111827; }
.frn-m-sidebar-btn { display: block; text-align: center; padding: 12px 20px; color: #fff; font-weight: 700; font-size: 14px; text-decoration: none; transition: opacity .2s; }
.frn-m-sidebar-btn:hover { opacity: .85; color: #fff; text-decoration: none; }

.frn-m-sidebar-nav { background: #fff; border-radius: 16px; padding: 20px; border: 1px solid #e2e8f0; }
.frn-m-sidebar-nav-head { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; color: #94a3b8; text-transform: uppercase; margin-bottom: 12px; }
#frn-sidebar-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.frn-m-nav-link { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 8px; font-size: 13px; font-weight: 500; color: #64748b; text-decoration: none; transition: background .15s, color .15s; }
.frn-m-nav-link:hover, .frn-m-nav-link--active { background: #fffbeb; color: #92400e; text-decoration: none; }
.frn-m-nav-arrow { width: .75rem; height: .75rem; flex-shrink: 0; }

.frn-m-sidebar-other { background: #fff; border-radius: 16px; padding: 20px; border: 1px solid #e2e8f0; }
.frn-m-other-pill { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 10px 14px; border-radius: 10px; font-size: 13px; font-weight: 600; color: #374151; text-decoration: none; border: 1px solid #e2e8f0; margin-bottom: 8px; transition: border-color .2s, background .2s; }
.frn-m-other-pill:last-child { margin-bottom: 0; }
.frn-m-other-pill:hover { border-color: #f59e0b; background: #fffbeb; color: #92400e; text-decoration: none; }

.frn-m-content { min-width: 0; }
.frn-m-intro-para { font-size: 17px; color: #374151; line-height: 1.8; margin: 0 0 40px; padding: 24px 28px; background: #fff; border-radius: 16px; border-left: 4px solid #f59e0b; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.frn-m-section { background: #fff; border-radius: 16px; padding: 32px 28px; margin-bottom: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.04); border: 1px solid #f1f5f9; }
.frn-m-section-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.frn-m-section-icon-wrap { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.frn-m-section-title { font-size: 20px; font-weight: 800; color: #111827; margin: 0; }
.frn-m-section-desc { font-size: 14px; color: #64748b; line-height: 1.75; margin: 0 0 20px; }
.frn-m-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.frn-m-point { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #374151; line-height: 1.6; }
.frn-m-point-check { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.frn-m-pros-cons { background: #fff; border-radius: 16px; padding: 32px 28px; margin-bottom: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.04); border: 1px solid #f1f5f9; }
.frn-m-pros-cons-title { font-size: 20px; font-weight: 800; color: #111827; margin: 0 0 24px; }
.frn-m-pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .frn-m-pros-cons-grid { grid-template-columns: 1fr; } }
.frn-m-pros-box, .frn-m-cons-box { border-radius: 12px; overflow: hidden; border: 1px solid #e2e8f0; }
.frn-m-pros-head, .frn-m-cons-head { display: flex; align-items: center; gap: 8px; padding: 12px 18px; font-size: 13px; font-weight: 700; color: #fff; }
.frn-m-pros-head { background: #16a34a; }
.frn-m-cons-head { background: #64748b; }
.frn-m-pros-list, .frn-m-cons-list { list-style: none; padding: 16px 18px; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.frn-m-pros-list li, .frn-m-cons-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #374151; line-height: 1.5; }
.frn-m-pros-check { font-weight: 700; flex-shrink: 0; }
.frn-m-cons-dash  { color: #94a3b8; font-weight: 700; flex-shrink: 0; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in-up { animation: fadeInUp .6s ease both; }

/* ═══════════════════════════════════════════════════════════════
   FOR FARMERS PAGE — ff-* prefix
═══════════════════════════════════════════════════════════════ */

/* Hero */
.ff-hero { position:relative; height:65vh; min-height:420px; overflow:hidden; display:flex; align-items:center; justify-content:center; }
.ff-hero-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.ff-hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(0,0,0,.65) 0%,rgba(0,0,0,.35) 100%); }
.ff-hero-body { position:relative; z-index:10; text-align:center; padding:0 20px; max-width:860px; margin:0 auto; }
.ff-breadcrumb { display:flex; align-items:center; justify-content:center; gap:8px; font-size:13px; color:rgba(255,255,255,.7); margin-bottom:16px; }
.ff-breadcrumb a { color:rgba(255,255,255,.7); text-decoration:none; } .ff-breadcrumb a:hover { color:#fff; }
.ff-hero-badge { display:inline-block; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.3); color:#fff; font-size:13px; font-weight:700; padding:6px 18px; border-radius:50px; margin-bottom:16px; }
.ff-hero-title { font-size:clamp(2.2rem,5vw,3.8rem); font-weight:900; color:#fff; line-height:1.15; margin:0 0 16px; }
.ff-hero-sub { font-size:clamp(1rem,2vw,1.2rem); color:rgba(255,255,255,.85); max-width:680px; margin:0 auto 28px; line-height:1.65; }
.ff-hero-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.ff-btn-primary { display:inline-flex; align-items:center; gap:6px; background:#16a34a; color:#fff; font-weight:700; font-size:14px; padding:13px 28px; border-radius:50px; text-decoration:none; transition:all .25s; box-shadow:0 4px 16px rgba(22,163,74,.4); }
.ff-btn-primary:hover { background:#15803d; transform:translateY(-2px); box-shadow:0 8px 24px rgba(22,163,74,.4); }
.ff-btn-secondary { display:inline-flex; align-items:center; gap:6px; background:rgba(255,255,255,.15); border:2px solid rgba(255,255,255,.5); color:#fff; font-weight:700; font-size:14px; padding:11px 26px; border-radius:50px; text-decoration:none; transition:all .25s; backdrop-filter:blur(4px); }
.ff-btn-secondary:hover { background:rgba(255,255,255,.25); }
.ff-btn-outline { display:inline-flex; align-items:center; gap:6px; border:2px solid currentColor; font-weight:700; font-size:14px; padding:11px 26px; border-radius:50px; text-decoration:none; transition:all .25s; }

/* Strip */
.ff-strip { background:#16a34a; overflow:hidden; white-space:nowrap; padding:16px 0; }
.ff-strip-track { display:inline-block; animation:ff-ticker 10s linear infinite; }
.ff-strip-track:hover { animation-play-state:paused; }
@keyframes ff-ticker { from { transform:translateX(0); } to { transform:translateX(-25%); } }
.ff-strip-item { display:inline-flex; align-items:center; gap:10px; padding:4px 22px; white-space:nowrap; vertical-align:middle; }
.ff-strip-sep { display:inline-block; width:4px; height:4px; background:rgba(255,255,255,.5); border-radius:50%; vertical-align:middle; margin:0 6px; }
.ff-strip-icon { font-size:18px; line-height:1; }
.ff-strip-val { display:block; font-size:15px; font-weight:900; color:#fff; line-height:1; }
.ff-strip-label { display:block; font-size:11px; color:rgba(255,255,255,.8); margin-top:3px; }

/* Layout helpers */
.ff-section { padding:80px 0; }
.ff-section--white { background:#fff; }
.ff-section--slate { background:#f8fafc; }
.ff-section--dark { background:#111827; }
.ff-section--amber { background:linear-gradient(135deg,#f59e0b 0%,#d97706 100%); }
.ff-container { max-width:1200px; margin:0 auto; padding:0 20px; }
.ff-section-header { text-align:center; margin-bottom:56px; }
.ff-eyebrow { font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#16a34a; }
.ff-eyebrow--light { color:rgba(255,255,255,.7); }
.ff-heading { font-size:clamp(1.8rem,3.5vw,2.8rem); font-weight:900; color:#111827; line-height:1.2; margin:8px 0 0; }
.ff-heading--center { text-align:center; }
.ff-heading--light { color:#fff; }
.ff-subhead { font-size:15px; color:#64748b; max-width:620px; margin:12px auto 0; line-height:1.7; }
.ff-subhead--light { color:rgba(255,255,255,.8); }
.ff-para { font-size:15px; color:#64748b; line-height:1.8; margin:0 0 18px; }

/* Two-col */
.ff-two-col { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.ff-two-col--reverse { direction:rtl; } .ff-two-col--reverse > * { direction:ltr; }
@media (max-width:768px) { .ff-two-col { grid-template-columns:1fr; gap:36px; } .ff-two-col--reverse { direction:ltr; } }
.ff-two-col__img { position:relative; }
.ff-img-round { width:100%; border-radius:24px; box-shadow:0 24px 56px rgba(0,0,0,.12); object-fit:cover; }
.ff-img-badge { position:absolute; bottom:-16px; left:-16px; background:#fff; border-radius:16px; box-shadow:0 8px 24px rgba(0,0,0,.12); padding:14px 18px; display:flex; align-items:center; gap:12px; }
.ff-img-badge--green { border-left:4px solid #16a34a; }
.ff-img-badge__icon { font-size:20px; }
.ff-img-badge__title { display:block; font-size:13px; font-weight:800; color:#111827; }
.ff-img-badge__sub { display:block; font-size:11px; color:#64748b; }

/* Check list */
.ff-check-list { display:flex; flex-direction:column; gap:10px; margin-top:24px; }
.ff-check-item { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:#374151; line-height:1.6; }
.ff-check-dot { width:22px; height:22px; border-radius:50%; background:#dcfce7; color:#16a34a; font-size:12px; font-weight:700; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }

/* Services grid */
.ff-services-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:20px; }
.ff-service-card { background:#fff; border-radius:20px; padding:28px; box-shadow:0 2px 12px rgba(0,0,0,.04); border:2px solid #f1f5f9; transition:all .3s; }
.ff-service-card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(0,0,0,.1); }
.ff-service-card--amber:hover { border-color:#fde68a; }
.ff-service-card--green:hover { border-color:#bbf7d0; }
.ff-service-card--blue:hover { border-color:#bfdbfe; }
.ff-service-card--purple:hover { border-color:#e9d5ff; }
.ff-service-card--orange:hover { border-color:#fed7aa; }
.ff-service-card--red:hover { border-color:#fecaca; }
.ff-service-icon { font-size:32px; display:block; margin-bottom:14px; }
.ff-service-title { font-size:16px; font-weight:800; color:#111827; margin:0 0 8px; }
.ff-service-desc { font-size:13px; color:#64748b; line-height:1.65; margin:0; }

/* Info cards */
.ff-info-cards { display:flex; flex-direction:column; gap:14px; margin-top:24px; }
.ff-info-card { display:flex; align-items:flex-start; gap:14px; background:#f8fafc; border-radius:14px; padding:16px 18px; }
.ff-info-icon { font-size:24px; flex-shrink:0; }
.ff-info-title { font-size:14px; font-weight:800; color:#111827; margin:0 0 4px; }
.ff-info-desc { font-size:13px; color:#64748b; line-height:1.6; margin:0; }

/* Vet grid */
.ff-vet-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:20px; }
.ff-vet-card { background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1); border-radius:20px; padding:28px; transition:background .3s; }
.ff-vet-card:hover { background:rgba(255,255,255,.12); }
.ff-vet-icon { font-size:32px; display:block; margin-bottom:14px; }
.ff-vet-title { font-size:16px; font-weight:800; color:#fff; margin:0 0 8px; }
.ff-vet-desc { font-size:13px; color:rgba(255,255,255,.65); line-height:1.65; margin:0; }

/* Training timeline */
.ff-training-timeline { display:flex; flex-direction:column; gap:0; max-width:800px; margin:0 auto; position:relative; }
.ff-training-timeline::before { content:''; position:absolute; left:90px; top:0; bottom:0; width:2px; background:#e2e8f0; }
@media (max-width:640px) { .ff-training-timeline::before { left:0; } }
.ff-training-item { display:grid; grid-template-columns:90px 2px 1fr; gap:0 24px; align-items:start; padding-bottom:32px; }
@media (max-width:640px) { .ff-training-item { grid-template-columns:1fr; gap:8px; padding-left:20px; } }
.ff-training-freq { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:#16a34a; padding-top:4px; text-align:right; padding-right:8px; }
.ff-training-dot { width:12px; height:12px; border-radius:50%; background:#16a34a; border:3px solid #fff; box-shadow:0 0 0 2px #16a34a; margin-top:4px; flex-shrink:0; justify-self:center; }
.ff-training-content { padding-bottom:0; }
.ff-training-title { font-size:16px; font-weight:800; color:#111827; margin:0 0 6px; }
.ff-training-desc { font-size:13px; color:#64748b; line-height:1.65; margin:0; }

/* Steps (How to Join) */
.ff-steps-row { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:20px; }
.ff-step { background:rgba(255,255,255,.2); backdrop-filter:blur(4px); border:1px solid rgba(255,255,255,.3); border-radius:20px; padding:24px; text-align:center; }
.ff-step-num { font-size:32px; font-weight:900; color:rgba(255,255,255,.4); display:block; margin-bottom:8px; }
.ff-step-title { font-size:15px; font-weight:800; color:#fff; margin:0 0 8px; }
.ff-step-desc { font-size:12px; color:rgba(255,255,255,.8); line-height:1.6; margin:0; }

/* CTA */
.ff-cta-section { padding:80px 0; background:#111827; }
.ff-cta-box { background:linear-gradient(135deg,#1e293b 0%,#111827 100%); border:1px solid rgba(255,255,255,.08); border-radius:28px; padding:56px 48px; text-align:center; position:relative; overflow:hidden; }
.ff-cta-buffalo { position:absolute; right:0; bottom:0; height:220px; opacity:.15; pointer-events:none; }
.ff-cta-content { position:relative; z-index:2; }
.ff-cta-icon { font-size:48px; display:block; margin-bottom:16px; }
.ff-cta-title { font-size:clamp(1.6rem,3vw,2.4rem); font-weight:900; color:#fff; margin:0 0 12px; }
.ff-cta-text { font-size:15px; color:#94a3b8; max-width:500px; margin:0 auto 28px; line-height:1.7; }
.ff-cta-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ═══════════════════════════════════════════════════════════════
   DAIRY BUSINESS PAGE — db-* prefix
═══════════════════════════════════════════════════════════════ */

/* Hero */
.db-hero { position:relative; height:65vh; min-height:420px; overflow:hidden; display:flex; align-items:center; justify-content:center; }
.db-hero-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.db-hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(0,0,0,.7) 0%,rgba(0,0,0,.35) 100%); }
.db-hero-body { position:relative; z-index:10; text-align:center; padding:0 20px; max-width:860px; margin:0 auto; }
.db-breadcrumb { display:flex; align-items:center; justify-content:center; gap:8px; font-size:13px; color:rgba(255,255,255,.7); margin-bottom:16px; }
.db-breadcrumb a { color:rgba(255,255,255,.7); text-decoration:none; } .db-breadcrumb a:hover { color:#fff; }
.db-hero-badge { display:inline-block; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.3); color:#fff; font-size:13px; font-weight:700; padding:6px 18px; border-radius:50px; margin-bottom:16px; }
.db-hero-title { font-size:clamp(2.2rem,5vw,3.8rem); font-weight:900; color:#fff; line-height:1.15; margin:0 0 16px; }
.db-hero-sub { font-size:clamp(1rem,2vw,1.2rem); color:rgba(255,255,255,.85); max-width:680px; margin:0 auto 28px; line-height:1.65; }
.db-hero-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.db-btn-primary { display:inline-flex; align-items:center; gap:6px; background:#f59e0b; color:#fff; font-weight:700; font-size:14px; padding:13px 28px; border-radius:50px; text-decoration:none; transition:all .25s; box-shadow:0 4px 16px rgba(245,158,11,.4); }
.db-btn-primary:hover { background:#d97706; transform:translateY(-2px); box-shadow:0 8px 24px rgba(245,158,11,.4); }
.db-btn-secondary { display:inline-flex; align-items:center; gap:6px; background:rgba(255,255,255,.15); border:2px solid rgba(255,255,255,.5); color:#fff; font-weight:700; font-size:14px; padding:11px 26px; border-radius:50px; text-decoration:none; transition:all .25s; backdrop-filter:blur(4px); }
.db-btn-secondary:hover { background:rgba(255,255,255,.25); }
.db-btn-outline { display:inline-flex; align-items:center; gap:6px; border:2px solid #fff; color:#fff; font-weight:700; font-size:14px; padding:11px 26px; border-radius:50px; text-decoration:none; transition:all .25s; }
.db-btn-outline:hover { background:rgba(255,255,255,.1); }

/* Strip — same style as ff-strip */
.db-strip { background:#16a34a; overflow:hidden; white-space:nowrap; padding:16px 0; }
.db-strip-track { display:inline-block; animation:db-ticker 10s linear infinite; }
.db-strip-track:hover { animation-play-state:paused; }
@keyframes db-ticker { from { transform:translateX(0); } to { transform:translateX(-25%); } }
.db-strip-item { display:inline-flex; align-items:center; gap:10px; padding:4px 22px; white-space:nowrap; vertical-align:middle; }
.db-strip-sep { display:inline-block; width:4px; height:4px; background:rgba(255,255,255,.5); border-radius:50%; vertical-align:middle; margin:0 6px; }
.db-strip-icon { font-size:18px; line-height:1; }
.db-strip-val { display:block; font-size:15px; font-weight:900; color:#fff; line-height:1; }
.db-strip-label { display:block; font-size:11px; color:rgba(255,255,255,.8); margin-top:3px; }

/* Layout */
.db-section { padding:80px 0; }
.db-section--white { background:#fff; }
.db-section--slate { background:#f8fafc; }
.db-section--dark { background:#111827; }
.db-section--amber { background:linear-gradient(135deg,#f59e0b 0%,#d97706 100%); }
.db-container { max-width:1200px; margin:0 auto; padding:0 20px; }
.db-section-header { text-align:center; margin-bottom:56px; }
.db-eyebrow { font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#f59e0b; }
.db-eyebrow--light { color:rgba(255,255,255,.7); }
.db-heading { font-size:clamp(1.8rem,3.5vw,2.8rem); font-weight:900; color:#111827; line-height:1.2; margin:8px 0 0; }
.db-heading--center { text-align:center; }
.db-heading--light { color:#fff; }
.db-subhead { font-size:15px; color:#64748b; max-width:620px; margin:12px auto 0; line-height:1.7; }
.db-subhead--light { color:rgba(255,255,255,.75); }
.db-para { font-size:15px; color:#64748b; line-height:1.8; margin:0 0 18px; }

/* Two col */
.db-two-col { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.db-two-col--reverse { grid-template-columns:1fr 1fr; }
@media (max-width:768px) { .db-two-col { grid-template-columns:1fr; gap:36px; } }
.db-two-col__img { position:relative; }
.db-img-round { width:100%; border-radius:24px; box-shadow:0 24px 56px rgba(0,0,0,.12); object-fit:cover; }
.db-img-badge { position:absolute; bottom:-16px; right:-16px; background:#fff; border-radius:16px; box-shadow:0 8px 24px rgba(0,0,0,.12); padding:14px 18px; display:flex; align-items:center; gap:12px; border-left:4px solid #f59e0b; }
.db-img-badge__icon { font-size:20px; }
.db-img-badge__title { display:block; font-size:13px; font-weight:800; color:#111827; }
.db-img-badge__sub { display:block; font-size:11px; color:#64748b; }

/* Stat row */
.db-stat-row { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-top:28px; }
@media (max-width:640px) { .db-stat-row { grid-template-columns:repeat(2,1fr); } }
.db-mini-stat { background:#fff7ed; border:1px solid #fed7aa; border-radius:14px; padding:14px; text-align:center; }
.db-mini-stat-val { display:block; font-size:18px; font-weight:900; color:#d97706; }
.db-mini-stat-label { display:block; font-size:11px; color:#92400e; margin-top:3px; }

/* Opportunities grid */
.db-opps-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:22px; }
.db-opp-card { background:#fff; border-radius:20px; padding:28px; border:2px solid #f1f5f9; box-shadow:0 2px 12px rgba(0,0,0,.04); display:flex; flex-direction:column; gap:12px; transition:all .3s; }
.db-opp-card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(0,0,0,.1); }
.db-opp-card--amber:hover { border-color:#fde68a; }
.db-opp-card--blue:hover { border-color:#bfdbfe; }
.db-opp-card--green:hover { border-color:#bbf7d0; }
.db-opp-card--purple:hover { border-color:#e9d5ff; }
.db-opp-card--orange:hover { border-color:#fed7aa; }
.db-opp-card--red:hover { border-color:#fecaca; }
.db-opp-icon { font-size:36px; }
.db-opp-title { font-size:17px; font-weight:800; color:#111827; margin:0; }
.db-opp-desc { font-size:13px; color:#64748b; line-height:1.65; margin:0; flex:1; }
.db-opp-footer { display:flex; align-items:center; justify-content:space-between; padding-top:12px; border-top:1px solid #f1f5f9; }
.db-opp-inv { font-size:12px; color:#64748b; }
.db-opp-inv strong { color:#111827; }
.db-opp-link { font-size:13px; font-weight:700; color:#f59e0b; text-decoration:none; }
.db-opp-link:hover { color:#d97706; }

/* Procurement steps */
.db-proc-steps { display:grid; grid-template-columns:repeat(auto-fill,minmax(170px,1fr)); gap:20px; }
.db-proc-step { background:#f8fafc; border-radius:18px; padding:24px 20px; text-align:center; position:relative; border:1px solid #e2e8f0; }
.db-proc-step-num { position:absolute; top:-12px; left:50%; transform:translateX(-50%); width:28px; height:28px; background:#f59e0b; color:#fff; border-radius:50%; font-size:12px; font-weight:900; display:flex; align-items:center; justify-content:center; box-shadow:0 2px 8px rgba(245,158,11,.4); }
.db-proc-step-icon { font-size:32px; display:block; margin:8px 0 12px; }
.db-proc-step-title { font-size:14px; font-weight:800; color:#111827; margin:0 0 6px; }
.db-proc-step-desc { font-size:12px; color:#64748b; line-height:1.6; margin:0; }

/* Franchise grid */
.db-frn-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:22px; }
.db-frn-card { background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); border-radius:20px; overflow:hidden; display:flex; flex-direction:column; }
.db-frn-card-head { display:flex; align-items:center; gap:14px; padding:20px 24px; }
.db-frn-card-head--amber { background:rgba(245,158,11,.25); }
.db-frn-card-head--blue { background:rgba(37,99,235,.25); }
.db-frn-card-head--green { background:rgba(22,163,74,.25); }
.db-frn-icon { font-size:28px; }
.db-frn-label { display:block; font-size:20px; font-weight:900; color:#fff; }
.db-frn-name { display:block; font-size:11px; color:rgba(255,255,255,.6); margin-top:2px; }
.db-frn-desc { font-size:13px; color:rgba(255,255,255,.7); line-height:1.65; padding:20px 24px; flex:1; margin:0; }
.db-frn-meta { padding:16px 24px; border-top:1px solid rgba(255,255,255,.08); display:flex; flex-direction:column; gap:8px; }
.db-frn-row { display:flex; justify-content:space-between; font-size:13px; }
.db-frn-row span { color:rgba(255,255,255,.5); }
.db-frn-row strong { color:#fff; }
.db-frn-btn { display:block; text-align:center; margin:0 24px 20px; padding:12px; background:rgba(245,158,11,.2); color:#fbbf24; font-weight:700; font-size:13px; border-radius:10px; text-decoration:none; transition:background .25s; }
.db-frn-btn:hover { background:rgba(245,158,11,.35); }

/* Why dairy grid */
.db-why-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:20px; }
.db-why-card { background:#f8fafc; border-radius:20px; padding:28px; border:2px solid transparent; transition:all .3s; }
.db-why-card:hover { border-color:#fde68a; background:#fff; box-shadow:0 12px 32px rgba(0,0,0,.07); }
.db-why-icon { font-size:32px; display:block; margin-bottom:14px; }
.db-why-title { font-size:15px; font-weight:800; color:#111827; margin:0 0 8px; }
.db-why-desc { font-size:13px; color:#64748b; line-height:1.65; margin:0; }

/* Roadmap */
.db-roadmap { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:20px; }
.db-rm-item { background:rgba(255,255,255,.15); backdrop-filter:blur(4px); border:1px solid rgba(255,255,255,.2); border-radius:20px; padding:28px; position:relative; overflow:hidden; }
.db-rm-year { font-size:28px; font-weight:900; color:rgba(255,255,255,.35); display:block; margin-bottom:8px; }
.db-rm-dot { width:8px; height:8px; border-radius:50%; background:#fff; margin-bottom:10px; }
.db-rm-phase { font-size:16px; font-weight:800; color:#fff; margin:0 0 8px; }
.db-rm-desc { font-size:12px; color:rgba(255,255,255,.75); line-height:1.65; margin:0; }

/* CTA */
.db-cta-section { padding:80px 0; background:#0f172a; }
.db-cta-box { background:linear-gradient(135deg,#1e293b 0%,#0f172a 100%); border:1px solid rgba(255,255,255,.08); border-radius:28px; padding:56px 48px; text-align:center; position:relative; overflow:hidden; }
.db-cta-buffalo { position:absolute; right:0; bottom:0; height:220px; opacity:.12; pointer-events:none; }
.db-cta-content { position:relative; z-index:2; }
.db-cta-icon { font-size:48px; display:block; margin-bottom:16px; }
.db-cta-title { font-size:clamp(1.6rem,3vw,2.4rem); font-weight:900; color:#fff; margin:0 0 12px; }
.db-cta-text { font-size:15px; color:#94a3b8; max-width:500px; margin:0 auto 28px; line-height:1.7; }
.db-cta-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ═══════════════════════════════════════════════════════════════
   LIVESTOCK PAGE — ls-* prefix
═══════════════════════════════════════════════════════════════ */

/* Hero */
.ls-hero { position:relative; height:65vh; min-height:420px; overflow:hidden; display:flex; align-items:center; justify-content:center; }
.ls-hero-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.ls-hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(0,0,0,.65) 0%,rgba(15,23,42,.5) 100%); }
.ls-hero-body { position:relative; z-index:10; text-align:center; padding:0 20px; max-width:860px; margin:0 auto; }
.ls-breadcrumb { display:flex; align-items:center; justify-content:center; gap:8px; font-size:13px; color:rgba(255,255,255,.7); margin-bottom:16px; }
.ls-breadcrumb a { color:rgba(255,255,255,.7); text-decoration:none; } .ls-breadcrumb a:hover { color:#fff; }
.ls-hero-badge { display:inline-block; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.3); color:#fff; font-size:13px; font-weight:700; padding:6px 18px; border-radius:50px; margin-bottom:16px; }
.ls-hero-title { font-size:clamp(2.2rem,5vw,3.8rem); font-weight:900; color:#fff; line-height:1.15; margin:0 0 16px; }
.ls-hero-sub { font-size:clamp(1rem,2vw,1.2rem); color:rgba(255,255,255,.85); max-width:680px; margin:0 auto 28px; line-height:1.65; }
.ls-hero-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.ls-btn-primary { display:inline-flex; align-items:center; gap:6px; background:#0f172a; color:#fff; font-weight:700; font-size:14px; padding:13px 28px; border-radius:50px; text-decoration:none; transition:all .25s; box-shadow:0 4px 16px rgba(0,0,0,.3); }
.ls-btn-primary:hover { background:#1e293b; transform:translateY(-2px); }
.ls-btn-secondary { display:inline-flex; align-items:center; gap:6px; background:rgba(255,255,255,.15); border:2px solid rgba(255,255,255,.5); color:#fff; font-weight:700; font-size:14px; padding:11px 26px; border-radius:50px; text-decoration:none; transition:all .25s; backdrop-filter:blur(4px); }
.ls-btn-secondary:hover { background:rgba(255,255,255,.25); }
.ls-btn-outline { display:inline-flex; align-items:center; gap:6px; border:2px solid rgba(255,255,255,.5); color:#fff; font-weight:700; font-size:14px; padding:11px 26px; border-radius:50px; text-decoration:none; transition:all .25s; }
.ls-btn-outline:hover { background:rgba(255,255,255,.1); border-color:#fff; }

/* Strip — auto-scroll marquee */
.ls-strip { background:#1e293b; overflow:hidden; white-space:nowrap; padding:16px 0; }
.ls-strip-track { display:inline-block; animation:ls-ticker 10s linear infinite; }
.ls-strip-track:hover { animation-play-state:paused; }
@keyframes ls-ticker { from { transform:translateX(0); } to { transform:translateX(-25%); } }
.ls-strip-item { display:inline-flex; align-items:center; gap:10px; padding:4px 22px; white-space:nowrap; vertical-align:middle; }
.ls-strip-sep { display:inline-block; width:4px; height:4px; background:rgba(255,255,255,.4); border-radius:50%; vertical-align:middle; margin:0 6px; }
.ls-strip-val { display:block; font-size:15px; font-weight:900; color:#f1f5f9; line-height:1; }
.ls-strip-label { display:block; font-size:11px; color:rgba(255,255,255,.5); margin-top:3px; }

/* Layout */
.ls-section { padding:80px 0; }
.ls-section--white { background:#fff; }
.ls-section--slate { background:#f8fafc; }
.ls-section--dark { background:#111827; }
.ls-section--amber { background:linear-gradient(135deg,#f59e0b 0%,#d97706 100%); }
.ls-container { max-width:1200px; margin:0 auto; padding:0 20px; }
.ls-section-header { text-align:center; margin-bottom:56px; }
.ls-eyebrow { font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#64748b; }
.ls-eyebrow--light { color:rgba(255,255,255,.6); }
.ls-eyebrow--dark { color:rgba(255,255,255,.6); }
.ls-heading { font-size:clamp(1.8rem,3.5vw,2.8rem); font-weight:900; color:#111827; line-height:1.2; margin:8px 0 0; }
.ls-heading--center { text-align:center; }
.ls-heading--light { color:#fff; }
.ls-subhead { font-size:15px; color:#64748b; max-width:620px; margin:12px auto 0; line-height:1.7; }
.ls-para { font-size:15px; color:#64748b; line-height:1.8; margin:0 0 18px; }
.ls-para--light { color:rgba(255,255,255,.7); }
.ls-para--dark { color:rgba(255,255,255,.75); }

/* Two col */
.ls-two-col { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.ls-two-col--center { align-items:start; }
@media (max-width:768px) { .ls-two-col { grid-template-columns:1fr; gap:36px; } }
.ls-two-col__img { position:relative; }
.ls-img-round { width:100%; border-radius:24px; box-shadow:0 24px 56px rgba(0,0,0,.15); object-fit:cover; }

/* Breed cards */
.ls-breed-card { display:grid; grid-template-columns:320px 1fr; gap:48px; align-items:center; background:#fff; border-radius:28px; padding:36px; box-shadow:0 4px 24px rgba(0,0,0,.06); border:2px solid #f1f5f9; margin-bottom:28px; transition:all .3s; }
.ls-breed-card:hover { box-shadow:0 16px 48px rgba(0,0,0,.1); border-color:#fde68a; }
.ls-breed-card--reverse { grid-template-columns:1fr 320px; }
@media (max-width:900px) { .ls-breed-card, .ls-breed-card--reverse { grid-template-columns:1fr; } }
.ls-breed-img-wrap { position:relative; text-align:center; }
.ls-breed-img { width:100%; max-width:280px; object-fit:contain; }
.ls-breed-badge { position:absolute; top:12px; right:12px; padding:5px 14px; border-radius:50px; font-size:11px; font-weight:700; }
.ls-breed-badge--gold { background:#fef3c7; color:#92400e; border:1px solid #fde68a; }
.ls-breed-badge--blue { background:#dbeafe; color:#1e40af; border:1px solid #bfdbfe; }
.ls-breed-title { font-size:clamp(1.4rem,3vw,2rem); font-weight:900; color:#111827; margin:6px 0 4px; }
.ls-breed-sub { font-size:13px; color:#f59e0b; font-weight:700; margin:0 0 14px; }
.ls-specs { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin:16px 0 24px; }
@media (max-width:480px) { .ls-specs { grid-template-columns:1fr; } }
.ls-spec-item { display:flex; align-items:center; gap:10px; background:#f8fafc; padding:10px 12px; border-radius:10px; }
.ls-spec-icon { font-size:16px; flex-shrink:0; }
.ls-spec-label { display:block; font-size:10px; color:#64748b; font-weight:600; text-transform:uppercase; letter-spacing:.05em; }
.ls-spec-val { display:block; font-size:13px; font-weight:700; color:#111827; }

/* Cow grid */
.ls-cows-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
@media (max-width:768px) { .ls-cows-grid { grid-template-columns:1fr; } }
.ls-cow-card { background:#fff; border-radius:24px; padding:32px; border:2px solid #f1f5f9; box-shadow:0 2px 12px rgba(0,0,0,.04); display:flex; flex-direction:column; gap:12px; transition:all .3s; }
.ls-cow-card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(0,0,0,.1); }
.ls-cow-card--amber:hover { border-color:#fde68a; }
.ls-cow-card--green:hover { border-color:#bbf7d0; }
.ls-cow-icon-wrap { width:72px; height:72px; border-radius:20px; background:#f8fafc; display:flex; align-items:center; justify-content:center; }
.ls-cow-icon { font-size:40px; }
.ls-cow-title { font-size:20px; font-weight:900; color:#111827; margin:0; }
.ls-cow-sub { font-size:12px; color:#f59e0b; font-weight:700; margin:0; }
.ls-cow-desc { font-size:13px; color:#64748b; line-height:1.65; margin:0; flex:1; }
.ls-cow-specs { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.ls-cow-spec { background:#f8fafc; border-radius:8px; padding:8px 12px; display:flex; gap:6px; font-size:12px; }
.ls-cow-spec span:first-child { color:#94a3b8; }
.ls-cow-spec span:last-child { font-weight:700; color:#111827; }
.ls-cow-btn { display:block; text-align:center; background:#111827; color:#fff; padding:12px; border-radius:12px; font-weight:700; font-size:13px; text-decoration:none; transition:background .25s; margin-top:4px; }
.ls-cow-btn:hover { background:#1e293b; }

/* Sell steps */
.ls-sell-steps { display:flex; flex-direction:column; gap:16px; margin-top:28px; }
.ls-sell-step { display:flex; align-items:flex-start; gap:16px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1); border-radius:14px; padding:16px 20px; }
.ls-sell-num { font-size:13px; font-weight:900; color:#fff; background:rgba(255,255,255,.15); border-radius:8px; padding:4px 10px; flex-shrink:0; }
.ls-sell-title { font-size:14px; font-weight:800; color:#fff; margin:0 0 4px; }
.ls-sell-desc { font-size:12px; color:rgba(255,255,255,.6); line-height:1.55; margin:0; }
.ls-sell-highlights { display:flex; flex-direction:column; gap:12px; margin-top:24px; }
.ls-sell-hl { display:flex; align-items:center; gap:12px; background:rgba(255,255,255,.08); border-radius:14px; padding:14px 18px; }
.ls-sell-hl-icon { font-size:20px; flex-shrink:0; }
.ls-sell-hl-title { display:block; font-size:14px; font-weight:700; color:#fff; }
.ls-sell-hl-sub { display:block; font-size:11px; color:rgba(255,255,255,.55); }

/* Sourcing grid */
.ls-sourcing-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:20px; }
.ls-src-card { background:#fff; border-radius:20px; padding:28px; border:2px solid #f1f5f9; box-shadow:0 2px 12px rgba(0,0,0,.04); transition:all .3s; }
.ls-src-card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(0,0,0,.1); border-color:#fde68a; }
.ls-src-icon { font-size:32px; display:block; margin-bottom:14px; }
.ls-src-title { font-size:16px; font-weight:800; color:#111827; margin:0 0 8px; }
.ls-src-desc { font-size:13px; color:#64748b; line-height:1.65; margin:0; }

/* Breed development */
.ls-breed-dev-list { display:flex; flex-direction:column; gap:14px; margin-top:24px; }
.ls-breed-dev-item { display:flex; align-items:flex-start; gap:14px; background:rgba(255,255,255,.2); backdrop-filter:blur(4px); border:1px solid rgba(255,255,255,.25); border-radius:14px; padding:16px 18px; }
.ls-breed-dev-icon { font-size:24px; flex-shrink:0; }
.ls-breed-dev-title { font-size:14px; font-weight:800; color:#fff; margin:0 0 4px; }
.ls-breed-dev-desc { font-size:12px; color:rgba(255,255,255,.75); line-height:1.6; margin:0; }
.ls-img-badge-set { display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; justify-content:center; }
.ls-breed-chip { background:rgba(255,255,255,.9); color:#111827; font-size:12px; font-weight:700; padding:5px 14px; border-radius:50px; box-shadow:0 2px 8px rgba(0,0,0,.1); }

/* Verification */
.ls-verify-steps { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:20px; }
.ls-vf-card { background:#fff; border-radius:20px; padding:28px; text-align:center; border:2px solid #f1f5f9; box-shadow:0 2px 12px rgba(0,0,0,.04); transition:all .3s; }
.ls-vf-card:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(0,0,0,.08); border-color:#e2e8f0; }
.ls-vf-icon-wrap { position:relative; width:64px; height:64px; margin:0 auto 16px; display:flex; align-items:center; justify-content:center; }
.ls-vf-icon { font-size:32px; }
.ls-vf-num { position:absolute; top:-4px; right:-4px; width:20px; height:20px; background:#0f172a; color:#fff; border-radius:50%; font-size:9px; font-weight:900; display:flex; align-items:center; justify-content:center; }
.ls-vf-title { font-size:14px; font-weight:800; color:#111827; margin:0 0 8px; }
.ls-vf-desc { font-size:12px; color:#64748b; line-height:1.65; margin:0; }

/* CTA */
.ls-cta-section { padding:80px 0; background:#0f172a; }
.ls-cta-box { background:linear-gradient(135deg,#1e293b 0%,#0f172a 100%); border:1px solid rgba(255,255,255,.08); border-radius:28px; padding:56px 48px; text-align:center; position:relative; overflow:hidden; }
.ls-cta-buffalo { position:absolute; right:0; bottom:0; height:220px; opacity:.12; pointer-events:none; }
.ls-cta-content { position:relative; z-index:2; }
.ls-cta-icon { font-size:48px; display:block; margin-bottom:16px; }
.ls-cta-title { font-size:clamp(1.6rem,3vw,2.4rem); font-weight:900; color:#fff; margin:0 0 12px; }
.ls-cta-text { font-size:15px; color:#94a3b8; max-width:500px; margin:0 auto 28px; line-height:1.7; }
.ls-cta-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ================================================================
   MOBILE OVERRIDES — must come after all base CSS to win cascade
   Targets: ls-* (livestock), ff-* (for-farmers), db-* (dairy-business)
   ================================================================ */
@media (max-width: 767px) {
    /* ── Livestock ── */
    .ls-section                 { padding: 48px 0; }
    .ls-section-header          { margin-bottom: 24px; }
    .ls-heading                 { font-size: 1.5rem; }
    .ls-subhead                 { font-size: 13px; margin-top: 6px; }
    .ls-cta-section             { padding: 40px 0; }
    .ls-cta-box                 { padding: 28px 18px; border-radius: 20px; }
    .ls-cta-title               { font-size: 1.3rem; }
    .ls-cta-text                { font-size: 13px; margin-bottom: 18px; }
    .ls-cta-buffalo             { height: 100px; opacity: .1; }
    .ls-cta-btns                { flex-direction: column; align-items: center; gap: 10px; }
    .ls-breed-card              { padding: 20px 16px; gap: 20px; }
    .ls-cow-card                { padding: 16px; }
    .ls-src-card                { padding: 16px; }
    /* Two-col layout */
    .ls-two-col                 { gap: 24px; }
    .ls-para                    { font-size: 13px; line-height: 1.7; margin-bottom: 12px; }
    /* Sell steps */
    .ls-sell-steps              { gap: 12px; margin-top: 16px; }
    .ls-sell-step               { gap: 10px; }
    .ls-sell-title              { font-size: 13px; }
    .ls-sell-desc               { font-size: 12px; }
    /* Highlights */
    .ls-sell-highlights         { gap: 8px; margin-top: 14px; }
    .ls-sell-hl                 { padding: 10px 12px; gap: 10px; }
    .ls-sell-hl-title           { font-size: 12px; }
    .ls-sell-hl-sub             { font-size: 11px; }

    /* ── For-Farmers ── */
    .ff-section                 { padding: 48px 0; }
    .ff-section-header          { margin-bottom: 28px; }
    .ff-heading                 { font-size: 1.6rem; }
    .ff-subhead                 { font-size: 14px; margin-top: 8px; }
    .ff-cta-section             { padding: 48px 0; }
    .ff-cta-box                 { padding: 32px 20px; }
    .ff-cta-title               { font-size: 1.4rem; }
    .ff-cta-text                { font-size: 13px; margin-bottom: 20px; }
    .ff-cta-buffalo             { height: 120px; opacity: .08; }

    /* Services — 2-column grid */
    .ff-services-grid           { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ff-service-card            { padding: 16px 14px; border-radius: 16px; border-top-width: 3px; border-top-style: solid; }
    .ff-service-card--amber     { border-top-color: #f59e0b; }
    .ff-service-card--green     { border-top-color: #16a34a; }
    .ff-service-card--blue      { border-top-color: #3b82f6; }
    .ff-service-card--purple    { border-top-color: #9333ea; }
    .ff-service-card--orange    { border-top-color: #f97316; }
    .ff-service-card--red       { border-top-color: #ef4444; }
    .ff-service-icon            { font-size: 26px; margin-bottom: 10px; }
    .ff-service-title           { font-size: 13px; margin-bottom: 6px; }
    .ff-service-desc            { font-size: 12px; line-height: 1.55; }

    /* Vet cards — 2-column grid */
    .ff-vet-grid                { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ff-vet-card                { padding: 16px 14px; border-radius: 16px; }
    .ff-vet-icon                { font-size: 26px; margin-bottom: 10px; }
    .ff-vet-title               { font-size: 13px; margin-bottom: 6px; }
    .ff-vet-desc                { font-size: 12px; line-height: 1.55; }

    /* Steps — 2-column grid */
    .ff-steps-row               { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ff-step                    { padding: 18px 14px; border-radius: 16px; }
    .ff-step-num                { font-size: 24px; margin-bottom: 6px; }
    .ff-step-title              { font-size: 13px; margin-bottom: 6px; }
    .ff-step-desc               { font-size: 11px; }

    /* Info cards (fodder section) */
    .ff-info-card               { padding: 14px; border-radius: 12px; gap: 12px; }
    .ff-info-title              { font-size: 13px; }
    .ff-info-desc               { font-size: 12px; }

    /* Training timeline — vertical timeline (matches desktop style) */
    .ff-training-timeline::before   { left: 16px; top: 6px; }
    .ff-training-timeline           { gap: 0; padding-left: 0; }
    .ff-training-item               { display: flex; flex-direction: column; align-items: flex-start;
                                      padding-left: 48px !important; padding-bottom: 28px !important;
                                      padding-top: 0 !important; padding-right: 0 !important;
                                      position: relative; grid-template-columns: unset; gap: 0; }
    .ff-training-freq               { text-align: left; padding: 0; padding-right: 0;
                                      font-size: 10px; color: #16a34a; font-weight: 700;
                                      letter-spacing: .08em; margin-bottom: 4px; }
    .ff-training-dot                { position: absolute; left: 10px; top: 2px;
                                      width: 14px; height: 14px; border-radius: 50%;
                                      background: #16a34a; border: 2px solid #fff;
                                      box-shadow: 0 0 0 2px #16a34a;
                                      margin: 0; justify-self: unset; display: block;
                                      overflow: hidden; }
    .ff-training-dot img            { display: none; }
    .ff-training-content            { padding: 0; }
    .ff-training-title              { font-size: 14px; font-weight: 800; margin-bottom: 4px; }
    .ff-training-desc               { font-size: 12px; line-height: 1.6; color: #64748b; }

    /* Two-col badge adjust */
    .ff-img-badge               { left: 8px; bottom: -12px; padding: 10px 14px; }
    .ff-img-badge__title        { font-size: 12px; }
    .ff-img-badge__sub          { font-size: 10px; }

    /* ── Dairy Business ── */
    .db-section                 { padding: 48px 0; }
    .db-section-header          { margin-bottom: 24px; }
    .db-heading                 { font-size: 1.5rem; }
    .db-subhead                 { font-size: 13px; margin-top: 6px; line-height: 1.6; }
    .db-para                    { font-size: 13px; line-height: 1.7; margin-bottom: 12px; }
    .db-eyebrow                 { font-size: 10px; }
    .db-cta-section             { padding: 48px 0; }
    .db-cta-box                 { padding: 32px 20px; }
    .db-cta-title               { font-size: 1.4rem; }
    .db-cta-text                { font-size: 13px; margin-bottom: 20px; }
    /* Overview image badge spacing */
    .db-two-col__img            { padding-bottom: 16px; }

    /* Opportunities — 2-column grid with color accents */
    .db-opps-grid               { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .db-opp-card                { padding: 14px 12px; border-radius: 16px; gap: 6px;
                                  border-top-width: 3px; border-top-style: solid; border-left-color: #f1f5f9; }
    .db-opp-card--amber         { border-top-color: #f59e0b; }
    .db-opp-card--blue          { border-top-color: #3b82f6; }
    .db-opp-card--green         { border-top-color: #16a34a; }
    .db-opp-card--purple        { border-top-color: #9333ea; }
    .db-opp-card--orange        { border-top-color: #f97316; }
    .db-opp-card--red           { border-top-color: #ef4444; }
    .db-opp-icon                { font-size: 24px; line-height: 1; }
    .db-opp-icon img            { max-height: 24px !important; max-width: 24px !important; }
    .db-opp-title               { font-size: 12px; font-weight: 800; }
    .db-opp-desc                { font-size: 11px; line-height: 1.5; }
    .db-opp-footer              { flex-direction: column; align-items: flex-start; gap: 3px; padding-top: 8px; }
    .db-opp-inv                 { font-size: 10px; }
    .db-opp-link                { font-size: 11px; }

    /* Franchise models — single column, compact */
    .db-frn-grid                { grid-template-columns: 1fr; gap: 12px; }
    .db-frn-card-head           { padding: 14px 16px; gap: 10px; }
    .db-frn-icon                { font-size: 24px; }
    .db-frn-icon img            { max-height: 28px !important; max-width: 28px !important; }
    .db-frn-label               { font-size: 16px; }
    .db-frn-name                { font-size: 10px; }
    .db-frn-desc                { font-size: 12px; padding: 12px 16px; line-height: 1.6; }
    .db-frn-meta                { padding: 10px 16px; gap: 5px; }
    .db-frn-row                 { font-size: 12px; }
    .db-frn-btn                 { margin: 0 16px 14px; padding: 9px; font-size: 12px; }

    /* Why dairy — compact cards */
    .db-why-card                { padding: 20px; }
    .db-why-title               { font-size: 14px; }
    .db-why-desc                { font-size: 12px; }

    /* Roadmap items */
    .db-rm-item                 { padding: 20px; border-radius: 16px; }
    .db-rm-year                 { font-size: 22px; margin-bottom: 6px; }
    .db-rm-phase                { font-size: 14px; margin-bottom: 6px; }
    .db-rm-desc                 { font-size: 12px; }

    /* Stats row */
    .db-mini-stat               { padding: 12px 10px; }
    .db-mini-stat-val           { font-size: 16px; }
    .db-mini-stat-label         { font-size: 10px; }

    /* Badge adjust */
    .db-img-badge               { right: 8px; bottom: -12px; padding: 10px 14px; }
    .db-img-badge__title        { font-size: 12px; }
    .db-img-badge__sub          { font-size: 10px; }

    /* Proc step */
    .db-proc-step               { padding: 20px 14px; }
}
@media (max-width: 480px) {
    /* ── Livestock ── */
    .ls-section           { padding: 36px 0; }
    .ls-cta-box           { padding: 24px 16px; border-radius: 20px; }

    /* ── For-Farmers ── */
    .ff-section           { padding: 36px 0; }
    .ff-section-header    { margin-bottom: 22px; }
    .ff-cta-box           { padding: 24px 16px; border-radius: 20px; }
    .ff-cta-btns          { flex-direction: column; align-items: center; }
    .ff-services-grid     { gap: 10px; }
    .ff-service-card      { padding: 14px 12px; }
    .ff-service-icon      { font-size: 22px; margin-bottom: 8px; }
    .ff-vet-grid          { gap: 10px; }
    .ff-vet-card          { padding: 14px 12px; }
    .ff-vet-icon          { font-size: 22px; margin-bottom: 8px; }
    .ff-steps-row         { gap: 10px; }
    .ff-step              { padding: 14px 12px; }

    /* ── Dairy Business ── */
    .db-section           { padding: 36px 0; }
    .db-section-header    { margin-bottom: 22px; }
    .db-cta-box           { padding: 24px 16px; border-radius: 20px; }
    .db-cta-btns          { flex-direction: column; align-items: center; }
    .db-hero-btns         { flex-direction: column; align-items: center; }
    .db-opps-grid         { gap: 10px; }
    .db-opp-card          { padding: 14px 12px; }
    .db-opp-icon          { font-size: 22px; }
    .db-frn-grid          { gap: 10px; }
}

/* ── Franchise Page (frn-*) Mobile Overrides ── */
@media (max-width: 767px) {
    /* Section spacing */
    .frn-section            { padding: 48px 0; }
    .frn-section-title      { font-size: clamp(20px, 5.5vw, 26px); margin-bottom: 8px; }
    .frn-section-desc       { font-size: 13px; line-height: 1.65; margin-bottom: 28px; }
    .frn-container          { padding: 0 16px; }

    /* Intro strip — wrap into 2×2 grid */
    .frn-intro-strip        { padding: 16px 0; }
    .frn-stats-row          { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
    .frn-stat               { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .frn-stat-num           { font-size: 22px; }
    .frn-stat-label         { font-size: 10px; }
    .frn-stat-divider       { display: none; }

    /* Model cards — compact single column */
    .frn-cards-grid         { grid-template-columns: 1fr; gap: 16px; padding-top: 8px; }
    .frn-card               { padding: 20px 18px; border-radius: 16px; }
    .frn-card-icon-wrap     { width: 42px; height: 42px; border-radius: 10px; font-size: 20px; }
    .frn-card-icon-wrap img { max-width: 22px !important; max-height: 22px !important; }
    .frn-card-badge         { font-size: 18px; padding: 2px 8px; }
    .frn-card-fullname      { font-size: 10px; }
    .frn-card-invest-bar    { padding: 10px 12px; gap: 6px; margin-bottom: 12px; border-radius: 10px; }
    .frn-card-invest-row    { font-size: 11px; padding-bottom: 6px; }
    .frn-card-invest-val    { font-size: 12px; }
    .frn-card-desc          { font-size: 12.5px; margin-bottom: 12px; line-height: 1.65; }
    .frn-card-list          { gap: 6px; margin-bottom: 14px; }
    .frn-card-list li       { font-size: 12px; }
    .frn-card-footer        { padding-top: 14px; }
    .frn-card-ideal         { font-size: 10px; }
    .frn-card-btn           { font-size: 12px; padding: 8px 16px; }

    /* Comparison table — horizontally scrollable, compact */
    .frn-cmp-wrap           { border-radius: 12px; }
    .frn-cmp-table          { font-size: 11px; min-width: 500px; table-layout: auto; }
    .frn-cmp-th             { padding: 0; }
    .frn-cmp-th--feat       { width: 110px; min-width: 110px; padding: 12px 8px; }
    .frn-cmp-col-head       { padding: 10px 6px 12px; gap: 3px; }
    .frn-cmp-col-icon       { font-size: 18px; }
    .frn-cmp-col-tag        { font-size: 14px; }
    .frn-cmp-col-sub        { font-size: 9px; }
    .frn-cmp-popular-badge  { font-size: 8px; padding: 2px 8px; }
    .frn-cmp-feat-icon      { display: none; }            /* hide emoji to save width */
    .frn-cmp-td             { padding: 10px 8px; font-size: 11px; }
    .frn-cmp-td--feat       { padding: 10px 8px; font-size: 11px; display: table-cell; gap: 0;
                              white-space: normal; line-height: 1.35; }
    .frn-cmp-td--cta-cell   { padding: 14px 8px; }
    .frn-cmp-feat-label     { font-size: 9px; }
    .frn-cmp-badge          { font-size: 9px; padding: 2px 6px; white-space: nowrap; display: inline-block; }
    .frn-cmp-pill           { font-size: 9px; padding: 2px 6px; white-space: nowrap; }
    .frn-cmp-amount         { font-size: 11px; }
    .frn-cmp-check          { font-size: 14px; }
    .frn-cmp-cta            { font-size: 11px; padding: 8px 12px; white-space: nowrap; }

    /* Why grid — 2 columns on mobile */
    .frn-why-grid           { grid-template-columns: 1fr; gap: 10px; }
    .frn-why-card           { padding: 14px 16px; gap: 12px; border-radius: 14px; }
    .frn-why-icon           { width: 40px; height: 40px; min-width: 40px; font-size: 20px; border-radius: 10px; }
    .frn-why-icon-img       { width: 40px; height: 40px; min-width: 40px; padding: 6px; }
    .frn-why-title          { font-size: 13px; margin-bottom: 4px; }
    .frn-why-desc           { font-size: 12px; line-height: 1.55; }

    /* Steps — horizontal layout on mobile (number left, content right) */
    .frn-steps              { gap: 8px; flex-direction: column; }
    .frn-step               { padding: 14px 16px; border-radius: 12px;
                              flex-direction: row; align-items: flex-start; gap: 14px; }
    .frn-step-num           { font-size: 22px; font-weight: 900; line-height: 1; color: #f59e0b;
                              margin-bottom: 0; text-align: center;
                              min-width: 38px; padding-top: 1px; flex-shrink: 0; }
    .frn-step-body          { flex: 1; min-width: 0; }
    .frn-step-title         { font-size: 14px; margin-bottom: 4px; }
    .frn-step-desc          { font-size: 12px; line-height: 1.6; }

    /* CTA box */
    .frn-cta-section        { padding: 40px 0; }
    .frn-cta-box            { padding: 36px 20px; border-radius: 18px; }
    .frn-cta-buffalo        { height: 80px; opacity: .12; right: 10px; }
    .frn-cta-icon           { font-size: 28px; margin-bottom: 10px; }
    .frn-cta-title          { font-size: clamp(18px, 5vw, 22px); margin-bottom: 10px; }
    .frn-cta-text           { font-size: 13px; margin-bottom: 20px; }
    .frn-cta-btn            { padding: 11px 22px; font-size: 13px; }
    .frn-cta-btn-ghost      { padding: 11px 22px; font-size: 12px; }
    .frn-cta-actions        { flex-direction: column; align-items: center; gap: 10px; }
}
@media (max-width: 480px) {
    .frn-section            { padding: 36px 0; }
    .frn-stats-row          { grid-template-columns: 1fr 1fr; }
    .frn-stat-num           { font-size: 20px; }
    .frn-cta-box            { padding: 28px 16px; }
}

/* ── Franchise Model Detail Page (frn-m-*) Mobile Overrides ── */
@media (max-width: 899px) {
    /* Put content BEFORE sidebar on mobile */
    .frn-m-body-inner       { gap: 1.25rem; }
    .frn-m-content          { order: -1; }
    .frn-m-sidebar          { order: 0; }

    /* Body padding */
    .frn-m-body             { padding: 1.25rem 0 2.5rem; }

    /* Intro paragraph */
    .frn-m-intro-para       { font-size: .9rem; padding: 1rem 1.25rem;
                              margin-bottom: 1rem; line-height: 1.7; }

    /* Section cards */
    .frn-m-section          { padding: 1rem 1.1rem; margin-bottom: .75rem;
                              border-radius: .875rem; }
    .frn-m-section-head     { gap: .7rem; margin-bottom: .75rem; }
    .frn-m-section-icon-wrap{ width: 2.25rem; height: 2.25rem; border-radius: .5rem;
                              font-size: 1.1rem; }
    .frn-m-section-icon-wrap img { max-width: 20px !important; max-height: 20px !important; }
    .frn-m-section-title    { font-size: 1rem; letter-spacing: -.01em; }
    .frn-m-section-desc     { font-size: .83rem; line-height: 1.65; margin-bottom: .75rem; }

    /* Bullet points */
    .frn-m-points           { gap: .45rem; }
    .frn-m-point            { font-size: .83rem; gap: .55rem; }
    .frn-m-point-check      { width: 1.1rem; height: 1.1rem; font-size: .55rem; }

    /* Pros / Cons */
    .frn-m-pros-cons        { margin-bottom: .75rem; }
    .frn-m-pros-cons-title  { font-size: .95rem; padding: 1rem 1.25rem .6rem; }
    .frn-m-pros-box,
    .frn-m-cons-box         { padding: 1rem 1.25rem; }
    .frn-m-pros-list li,
    .frn-m-cons-list li     { font-size: .8rem; gap: .5rem; }

    /* Sidebar — compact after content */
    .frn-m-sidebar-card     { border-radius: .875rem; }
    .frn-m-sidebar-card-head{ padding: .7rem .9rem; gap: .5rem; }
    .frn-m-sidebar-invest   { padding: .4rem .9rem; }
    .frn-m-sidebar-btn      { margin: .5rem .9rem .75rem; padding: .55rem; font-size: .8rem; }
    /* Hide nav + other models on mobile to reduce clutter */
    .frn-m-sidebar-nav,
    .frn-m-sidebar-other    { display: none; }
}

/* ══ Blog Page Mobile Overrides ══════════════════════════════ */
@media (max-width: 767px) {
    /* Search strip */
    .blog-search-section    { padding: 16px 0; }

    /* Grid content area */
    .blog-content           { padding: 28px 0 40px; }
    .blog-grid-label        { margin-bottom: 14px; gap: 8px; }

    /* Cards — tighten body padding */
    .blog-card-body         { padding: 12px 13px; }
    .blog-card-title        { font-size: 13.5px; }
    .blog-card-excerpt      { font-size: 12px; -webkit-line-clamp: 2; }
    .blog-card-footer       { padding-top: 10px; }
    .blog-card-author-name  { font-size: 10.5px; }
    .blog-card-read-link    { font-size: 10.5px; }

    /* Amber CTA — reduce heavy vertical padding */
    .blog-amber-cta         { padding: 48px 0; }
    .blog-amber-cta-icon    { width: 52px; height: 52px; font-size: 24px; margin-bottom: 14px; }
    .blog-amber-cta-title   { font-size: 1.35rem; margin-bottom: 10px; }
    .blog-amber-cta-text    { font-size: 13px; margin-bottom: 20px; }
    .blog-amber-cta-btn     { padding: 12px 28px; font-size: 14px; gap: 8px; }
}

/* Ensure 1-col grid kicks in earlier (640px, not just 480px) */
@media (max-width: 640px) {
    .blog-grid-4            { grid-template-columns: 1fr; gap: 16px; }
}

/* ══════════════════════════════════════════════════════════════
   RICH TEXT — .richtext scope
   Used on: Policy pages, Blog post body, any TinyMCE output
   ══════════════════════════════════════════════════════════════ */

/* ── Base wrapper ──────────────────────────────────────────── */
.richtext {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.85;
    color: #374151;
    word-break: break-word;
}

/* ── Headings ──────────────────────────────────────────────── */
.richtext h1,
.richtext h2,
.richtext h3,
.richtext h4,
.richtext h5,
.richtext h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: .75rem;
}
.richtext h1 { font-size: 2rem;    border-bottom: 2px solid #d1fae5; padding-bottom: .35rem; }
.richtext h2 { font-size: 1.5rem;  border-bottom: 1px solid #e5e7eb; padding-bottom: .25rem; }
.richtext h3 { font-size: 1.25rem; color: #1f2937; }
.richtext h4 { font-size: 1.1rem;  color: #374151; }
.richtext h5 { font-size: 1rem;    color: #4b5563; text-transform: uppercase; letter-spacing: .04em; }
.richtext h6 { font-size: .9rem;   color: #6b7280; text-transform: uppercase; letter-spacing: .06em; }

/* ── Paragraph ─────────────────────────────────────────────── */
.richtext p {
    margin-top: 0;
    margin-bottom: 1.1rem;
    color: #374151;
}

/* ── Links ─────────────────────────────────────────────────── */
.richtext a {
    color: #16a34a;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .15s;
}
.richtext a:hover { color: #15803d; }

/* ── Strong / Em ───────────────────────────────────────────── */
.richtext strong, .richtext b { font-weight: 700; color: #111827; }
.richtext em,    .richtext i  { font-style: italic; color: #374151; }
.richtext u                   { text-decoration: underline; text-underline-offset: 3px; }
.richtext s,     .richtext del{ text-decoration: line-through; color: #9ca3af; }

/* ── Unordered lists ───────────────────────────────────────── */
.richtext ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.1rem;
}
.richtext ul li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: .45rem;
    color: #374151;
}
.richtext ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .6em;
    width: 8px;
    height: 8px;
    background: #16a34a;
    border-radius: 50%;
}
/* Nested ul */
.richtext ul ul li::before { background: #86efac; width: 6px; height: 6px; top: .65em; }
.richtext ul ul ul li::before { background: #d1fae5; width: 5px; height: 5px; }

/* ── Ordered lists ─────────────────────────────────────────── */
.richtext ol {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.1rem;
    counter-reset: richtext-ol;
}
.richtext ol li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: .45rem;
    color: #374151;
    counter-increment: richtext-ol;
}
.richtext ol li::before {
    content: counter(richtext-ol) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #16a34a;
    min-width: 1.5rem;
}
/* Nested ol */
.richtext ol ol { counter-reset: richtext-ol-2; }
.richtext ol ol li { counter-increment: richtext-ol-2; }
.richtext ol ol li::before { content: counter(richtext-ol-2, lower-alpha) "."; color: #4b5563; }

/* ── Nested indent ─────────────────────────────────────────── */
.richtext ul ul,
.richtext ol ol,
.richtext ul ol,
.richtext ol ul {
    margin-top: .3rem;
    margin-bottom: .3rem;
    padding-left: 1.5rem;
}

/* ── Blockquote ────────────────────────────────────────────── */
.richtext blockquote {
    border-left: 4px solid #16a34a;
    background: #f0fdf4;
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-radius: 0 .5rem .5rem 0;
    color: #166534;
    font-style: italic;
}
.richtext blockquote p { margin-bottom: 0; color: inherit; }
.richtext blockquote cite {
    display: block;
    margin-top: .5rem;
    font-size: .85rem;
    font-style: normal;
    font-weight: 600;
    color: #15803d;
}

/* ── Horizontal rule ───────────────────────────────────────── */
.richtext hr {
    border: none;
    border-top: 2px solid #e5e7eb;
    margin: 2rem 0;
}

/* ── Images ────────────────────────────────────────────────── */
.richtext img {
    max-width: 100%;
    height: auto;
    border-radius: .75rem;
    display: block;
    margin: 1.25rem auto;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.richtext figure {
    margin: 1.5rem 0;
    text-align: center;
}
.richtext figcaption {
    font-size: .85rem;
    color: #6b7280;
    margin-top: .5rem;
    font-style: italic;
}

/* ── Inline code ───────────────────────────────────────────── */
.richtext code {
    font-family: 'Courier New', Courier, monospace;
    font-size: .875em;
    background: #f1f5f9;
    color: #0f172a;
    padding: .1em .35em;
    border-radius: .3em;
    border: 1px solid #e2e8f0;
}

/* ── Code block ────────────────────────────────────────────── */
.richtext pre {
    background: #0f172a;
    color: #e2e8f0;
    font-family: 'Courier New', Courier, monospace;
    font-size: .875rem;
    line-height: 1.7;
    padding: 1.25rem 1.5rem;
    border-radius: .75rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}
.richtext pre code {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

/* ── Tables ────────────────────────────────────────────────── */
.richtext table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: .95rem;
    border-radius: .75rem;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
}
.richtext thead {
    background: #16a34a;
    color: #ffffff;
}
.richtext thead th {
    padding: .75rem 1rem;
    font-weight: 700;
    font-size: .875rem;
    text-align: left;
    letter-spacing: .03em;
    border: none;
}
.richtext tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background .12s;
}
.richtext tbody tr:last-child { border-bottom: none; }
.richtext tbody tr:nth-child(even) { background: #f9fafb; }
.richtext tbody tr:hover          { background: #f0fdf4; }
.richtext tbody td {
    padding: .7rem 1rem;
    color: #374151;
    vertical-align: top;
}
.richtext tfoot td,
.richtext tfoot th {
    padding: .65rem 1rem;
    font-weight: 600;
    background: #f3f4f6;
    color: #374151;
    border-top: 2px solid #e5e7eb;
}

/* ── Mark / highlight ──────────────────────────────────────── */
.richtext mark {
    background: #fef9c3;
    color: #78350f;
    padding: .05em .25em;
    border-radius: .2em;
}

/* ── Subscript / Superscript ───────────────────────────────── */
.richtext sub  { vertical-align: sub;   font-size: .8em; }
.richtext sup  { vertical-align: super; font-size: .8em; }

/* ── Definition lists ──────────────────────────────────────── */
.richtext dl   { margin-bottom: 1.1rem; }
.richtext dt   { font-weight: 700; color: #111827; margin-top: .75rem; }
.richtext dd   { margin-left: 1.5rem; color: #374151; margin-bottom: .25rem; }

/* ── Keyboard keys ─────────────────────────────────────────── */
.richtext kbd {
    display: inline-block;
    padding: .15em .45em;
    font-size: .8em;
    font-family: monospace;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-bottom-width: 3px;
    border-radius: .3em;
    color: #0f172a;
}

/* ── Details / Summary ─────────────────────────────────────── */
.richtext details {
    border: 1px solid #e5e7eb;
    border-radius: .5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}
.richtext summary {
    padding: .75rem 1rem;
    font-weight: 600;
    cursor: pointer;
    background: #f9fafb;
    list-style: none;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.richtext summary::before {
    content: '▶';
    font-size: .7em;
    transition: transform .2s;
    color: #16a34a;
}
.richtext details[open] summary::before { transform: rotate(90deg); }
.richtext details > *:not(summary) { padding: .75rem 1rem; }

/* ── Responsive tables (horizontal scroll on small screens) ── */
@media (max-width: 640px) {
    .richtext table { display: block; overflow-x: auto; }
    .richtext h1    { font-size: 1.5rem; }
    .richtext h2    { font-size: 1.25rem; }
    .richtext h3    { font-size: 1.1rem; }
}

/* ══════════════════════════════════════════════════════════════
   POLICY PAGE LAYOUT
   ══════════════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────────────── */
.policy-hero {
    background: linear-gradient(135deg, #0a2a15 0%, #14532d 50%, #0a2a15 100%);
    padding: 3.5rem 1rem 3rem;
    text-align: center;
    color: #fff;
}
.policy-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}
.policy-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: #86efac;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.policy-breadcrumb a { color: #86efac; text-decoration: none; }
.policy-breadcrumb a:hover { color: #bbf7d0; text-decoration: underline; }
.policy-breadcrumb span { color: rgba(255,255,255,.4); }
.policy-breadcrumb span:last-child { color: #fff; }
.policy-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0 0 .6rem;
    line-height: 1.2;
}
.policy-hero-meta {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    margin: 0;
}

/* ── Content section ───────────────────────────────────────── */
.policy-content-section {
    padding: 3rem 1rem 4rem;
    background: #fff;
}
.policy-content-wrap {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ── Table of contents ─────────────────────────────────────── */
.policy-toc {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: .875rem;
    padding: 1.1rem 1.4rem;
}
.policy-toc-label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #16a34a;
    margin-bottom: .6rem;
}
.policy-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}
.policy-toc-list li a {
    font-size: .9rem;
    color: #166534;
    text-decoration: none;
    display: block;
    padding: .15rem 0;
    border-bottom: 1px dashed transparent;
    transition: color .15s, border-color .15s;
}
.policy-toc-list li a:hover {
    color: #15803d;
    border-bottom-color: #86efac;
}
.policy-toc-list .policy-toc-sub a {
    padding-left: 1rem;
    font-size: .85rem;
    color: #4b5563;
}
.policy-toc-list .policy-toc-sub a:hover { color: #16a34a; }

/* ── Mobile tweaks ─────────────────────────────────────────── */
@media (max-width: 640px) {
    .policy-hero        { padding: 2.5rem 1rem 2rem; }
    .policy-hero-title  { font-size: 1.6rem; }
    .policy-content-section { padding: 2rem .75rem 3rem; }
}

/* ================================================================
   BLOG DETAIL / SHOW PAGE
   ================================================================ */

/* ── Hero ─────────────────────────────────────────────────────── */
.blog-show-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(135deg, #0d2818 0%, #14532d 50%, #052e16 100%);
    padding-bottom: 3rem;
}
.blog-show-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(.45);
    transform: scale(1.05);
}
.blog-show-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,46,22,.95) 0%, rgba(5,46,22,.6) 60%, rgba(5,46,22,.3) 100%);
}
.blog-show-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 0;
}

/* Breadcrumb */
.blog-show-breadcrumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    font-size: .78rem;
    color: #86efac;
}
.blog-show-breadcrumb a {
    color: #86efac;
    text-decoration: none;
    transition: color .15s;
}
.blog-show-breadcrumb a:hover { color: #fff; }
.blog-show-breadcrumb span   { color: #d1fae5; }
.blog-show-breadcrumb svg    { opacity: .5; flex-shrink: 0; }

/* Meta row */
.blog-show-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1rem;
    font-size: .82rem;
    color: #bbf7d0;
}
.blog-show-meta-item {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
.blog-show-meta-dot { color: #4ade80; opacity: .6; }
.blog-show-readtime {
    background: rgba(74,222,128,.15);
    border: 1px solid rgba(74,222,128,.3);
    padding: .2rem .7rem;
    border-radius: 999px;
    color: #86efac;
}

/* Title */
.blog-show-title {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.22;
    margin-bottom: 1.5rem;
    letter-spacing: -.02em;
}

/* Back link */
.blog-show-back {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 600;
    color: #4ade80;
    text-decoration: none;
    border: 1px solid rgba(74,222,128,.3);
    padding: .4rem 1rem;
    border-radius: 999px;
    transition: all .15s;
}
.blog-show-back:hover {
    background: rgba(74,222,128,.12);
    color: #86efac;
    border-color: rgba(74,222,128,.5);
}

/* ── Body layout ─────────────────────────────────────────────── */
.blog-show-body {
    background: #f8fafc;
    padding: 3rem 1.5rem 5rem;
}
.blog-show-container {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
}

/* ── Article card ────────────────────────────────────────────── */
.blog-show-article {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,.07);
    padding: 2.5rem 2.5rem 2rem;
    min-width: 0;
}

/* Featured image */
.blog-show-img-wrap { margin: -2.5rem -2.5rem 2rem; }
.blog-show-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    display: block;
}

/* Intro / short description */
.blog-show-intro {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #f0fdf4;
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    margin-bottom: 2rem;
}
.blog-show-intro-bar {
    flex-shrink: 0;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg,#16a34a,#4ade80);
    align-self: stretch;
    min-height: 40px;
}
.blog-show-intro p {
    margin: 0;
    font-size: 1.05rem;
    color: #166534;
    font-weight: 500;
    line-height: 1.6;
    font-style: italic;
}

/* Content */
.blog-show-content { margin-bottom: 2rem; }

/* Author card */
.blog-show-author-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f0fdf4;
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    margin-bottom: 1.75rem;
    border: 1px solid #bbf7d0;
}
.blog-show-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg,#16a34a,#4ade80);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.blog-show-author-name {
    font-weight: 700;
    color: #15803d;
    font-size: .95rem;
    margin-bottom: .2rem;
}
.blog-show-author-bio {
    font-size: .8rem;
    color: #4b7c59;
}

/* Share */
.blog-show-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.25rem;
}
.blog-show-share-label {
    font-size: .8rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: nowrap;
}
.blog-show-share-btns { display: flex; gap: .6rem; flex-wrap: wrap; }
.blog-show-share-btns a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: filter .15s;
}
.blog-show-share-btns a:hover { filter: brightness(1.12); }
.blog-share-fb { background: #1877f2; color: #fff; }
.blog-share-tw { background: #1da1f2; color: #fff; }
.blog-share-wa { background: #25d366; color: #fff; }

/* ── Sidebar ─────────────────────────────────────────────────── */
.blog-show-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.blog-sidebar-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(0,0,0,.06);
    padding: 1.5rem;
}

.blog-sidebar-heading {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid #f1f5f9;
}
.blog-sidebar-heading-bar {
    display: inline-block;
    width: 4px;
    height: 18px;
    border-radius: 4px;
    background: linear-gradient(180deg,#16a34a,#4ade80);
    flex-shrink: 0;
}

.blog-sidebar-recent { display: flex; flex-direction: column; gap: .9rem; }
.blog-sidebar-recent-item {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    text-decoration: none;
    padding: .5rem;
    border-radius: 8px;
    transition: background .12s;
}
.blog-sidebar-recent-item:hover { background: #f0fdf4; }
.blog-sidebar-thumb {
    width: 68px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.blog-sidebar-thumb-placeholder {
    width: 68px;
    height: 56px;
    border-radius: 8px;
    background: linear-gradient(135deg,#dcfce7,#bbf7d0);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
}
.blog-sidebar-recent-info h4 {
    margin: 0 0 .25rem;
    font-size: .82rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    transition: color .12s;
}
.blog-sidebar-recent-item:hover .blog-sidebar-recent-info h4 { color: #16a34a; }
.blog-sidebar-recent-info span {
    font-size: .72rem;
    color: #94a3b8;
}

/* CTA */
.blog-sidebar-cta {
    background: linear-gradient(135deg,#166534,#15803d);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    color: #fff;
}
.blog-sidebar-cta-icon {
    font-size: 2.5rem;
    margin-bottom: .75rem;
    display: block;
}
.blog-sidebar-cta h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: .5rem;
    color: #fff;
}
.blog-sidebar-cta p {
    font-size: .82rem;
    color: #bbf7d0;
    margin-bottom: 1.25rem;
    line-height: 1.55;
}
.blog-sidebar-cta-btn {
    display: inline-block;
    background: #fff;
    color: #15803d;
    font-weight: 700;
    font-size: .85rem;
    padding: .6rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    transition: all .15s;
}
.blog-sidebar-cta-btn:hover {
    background: #f0fdf4;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
}

/* Info card */
.blog-sidebar-info {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(0,0,0,.06);
    padding: 1.25rem 1.5rem;
}
.blog-sidebar-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .55rem 0;
    border-bottom: 1px solid #f8fafc;
    font-size: .83rem;
}
.blog-sidebar-info-row:last-child { border-bottom: none; }
.blog-sidebar-info-label { color: #94a3b8; font-weight: 500; }
.blog-sidebar-info-val   { color: #1e293b; font-weight: 600; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .blog-show-container {
        grid-template-columns: 1fr;
    }
    .blog-show-sidebar { order: -1; }
    .blog-show-hero { min-height: 340px; }
    .blog-show-article { padding: 1.75rem 1.25rem 1.5rem; }
    .blog-show-img-wrap { margin: -1.75rem -1.25rem 1.5rem; }
}
@media (max-width: 540px) {
    .blog-show-hero-inner { padding: 2.5rem 1rem 0; }
    .blog-show-title      { font-size: 1.5rem; }
    .blog-show-body       { padding: 2rem 1rem 4rem; }
    .blog-show-article    { padding: 1.25rem 1rem 1.25rem; }
    .blog-show-img-wrap   { margin: -1.25rem -1rem 1.25rem; }
}

/* ── EDITOR HTML IN SECTION DESCRIPTIONS ──────────────────────────────────
   When admin writes rich HTML via TinyMCE in description/short_description
   fields, these rules ensure the output renders properly within section
   containers that aren't wrapped in the full .richtext scope.
   ────────────────────────────────────────────────────────────────────────── */
.hp-about-text p,
.hp-section-sub p,
.ff-subhead p,
.ff-para p,
.ff-cta-text p,
.db-subhead p,
.db-para p,
.frn-cta-text p,
.ls-subhead p,
.ls-para p,
.ls-cta-text p {
    margin-bottom: 0.6em;
}
.hp-about-text p:last-child,
.hp-section-sub p:last-child,
.ff-subhead p:last-child,
.ff-para p:last-child,
.ff-cta-text p:last-child,
.db-subhead p:last-child,
.db-para p:last-child,
.frn-cta-text p:last-child,
.ls-subhead p:last-child,
.ls-para p:last-child,
.ls-cta-text p:last-child { margin-bottom: 0; }

.hp-about-text ul,  .hp-about-text ol,
.hp-section-sub ul, .hp-section-sub ol,
.ff-subhead ul,     .ff-subhead ol,
.ff-para ul,        .ff-para ol,
.ff-cta-text ul,    .ff-cta-text ol,
.db-subhead ul,     .db-subhead ol,
.db-para ul,        .db-para ol,
.frn-cta-text ul,   .frn-cta-text ol,
.ls-subhead ul,     .ls-subhead ol,
.ls-para ul,        .ls-para ol,
.ls-cta-text ul,    .ls-cta-text ol {
    margin: 0.5em 0 0.8em 1.4em;
    padding: 0;
}
.hp-about-text ul li,  .hp-about-text ol li,
.hp-section-sub ul li, .hp-section-sub ol li,
.ff-subhead ul li,     .ff-subhead ol li,
.ff-para ul li,        .ff-para ol li,
.db-subhead ul li,     .db-subhead ol li,
.db-para ul li,        .db-para ol li,
.ls-subhead ul li,     .ls-subhead ol li,
.ls-para ul li,        .ls-para ol li {
    margin-bottom: 0.3em;
    list-style: inherit;
}
.hp-about-text strong,  .hp-section-sub strong,
.ff-subhead strong,     .ff-para strong,
.ff-cta-text strong,    .db-subhead strong,
.db-para strong,        .frn-cta-text strong,
.ls-subhead strong,     .ls-para strong { font-weight: 700; }

.hp-about-text h2, .hp-section-sub h2,
.ff-subhead h2, .ff-para h2, .db-para h2,
.ls-para h2 {
    font-size: 1.2em;
    font-weight: 700;
    margin: 0.8em 0 0.4em;
    color: #1f2937;
}
.hp-about-text h3, .hp-section-sub h3,
.ff-subhead h3, .ff-para h3, .db-para h3,
.ls-para h3 {
    font-size: 1.05em;
    font-weight: 700;
    margin: 0.6em 0 0.3em;
    color: #374151;
}
