/* ===== FREEZER TYPE STANDALONE PAGES ===== */

.ft-hero {
    background: linear-gradient(135deg, #0054A6 0%, #1a73e8 100%);
    color: #fff;
    text-align: center;
    padding: 48px 20px 40px;
}
.ft-hero h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
}
.ft-hero p {
    font-size: 1rem;
    opacity: 0.92;
    max-width: 640px;
    margin: 0 auto 24px;
    line-height: 1.6;
}
.ft-hero-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.ft-hero-badge {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ft-hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.ft-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}
.ft-hero-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.ft-hero-btn-primary { background: #fff; color: #0054A6; }
.ft-hero-btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }

.ft-breadcrumb {
    background: #f5f7fa;
    padding: 10px 0;
    font-size: 0.82rem;
    color: #666;
    border-bottom: 1px solid #eee;
}
.ft-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.ft-breadcrumb a { color: #0054A6; text-decoration: none; }
.ft-breadcrumb a:hover { text-decoration: underline; }
.ft-breadcrumb .sep { color: #bbb; }

.ft-page-products {
    padding: 32px 0 48px;
}
.ft-page-products .section-title {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

/* Hide homepage-only sections on these pages */
.ft-hide { display: none !important; }
