/* ── Partner with Us — highlighted animated button ─────────── */
.fs-btn-partner {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 13px 24px;
    border-radius: 9px;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    color: #fff;
    background: linear-gradient(135deg, #001B5E 0%, #0049FF 100%);
    box-shadow: 0 4px 20px rgba(0,73,255,.45);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
/* shimmer sweep */
.fs-btn-partner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
        transparent 20%,
        rgba(255,255,255,.28) 50%,
        transparent 80%);
    transform: translateX(-100%);
    animation: btn-shimmer 2.8s ease-in-out infinite;
}
@keyframes btn-shimmer {
    0%   { transform: translateX(-100%); }
    45%  { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}
/* pulse ring */
.fs-btn-partner::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 12px;
    border: 2px solid rgba(0,73,255,.5);
    animation: btn-pulse 2.8s ease-in-out infinite;
}
@keyframes btn-pulse {
    0%, 100% { opacity: .7; transform: scale(1); }
    50%       { opacity: 0;  transform: scale(1.06); }
}
.fs-btn-partner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,73,255,.6);
    color: #fff;
}
.fs-btn-partner.fs-btn-lg { padding: 15px 30px; font-size: 1rem; }
/* keep text above pseudo-elements */
.fs-btn-partner i,
.fs-btn-partner span { position: relative; z-index: 1; }

/* ── Partner Banner ─────────────────────────────────────────── */
.pb-section {
    background: linear-gradient(135deg, #001B5E 0%, #0a2a7a 60%, #001040 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.pb-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(0,73,255,.18) 0%, transparent 70%);
    pointer-events: none;
}
.pb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(0,73,255,.18);
    border: 1px solid rgba(0,73,255,.35);
    color: #7eb3ff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: .3rem .85rem;
    margin-bottom: 1rem;
}
.pb-heading {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: .75rem;
}
.pb-heading span { color: #7eb3ff; }
.pb-sub {
    color: rgba(255,255,255,.65);
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 0;
}
/* partner type cards */
.pb-cards { display: flex; flex-direction: column; gap: 1rem; }
.pb-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    transition: background .2s, border-color .2s;
    text-decoration: none;
}
.pb-card:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(0,73,255,.45);
}
.pb-card-icon {
    width: 42px; height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.pb-card-title {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .15rem;
}
.pb-card-desc {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    line-height: 1.45;
}
.pb-col-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: .6rem;
}
.pb-divider {
    width: 1px;
    background: rgba(255,255,255,.12);
    align-self: stretch;
}
/* CTA area */
.pb-cta-area { margin-top: 2rem; display: flex; justify-content: center; }
.pb-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 13px 26px;
    border-radius: 9px;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    color: #fff;
    background: linear-gradient(135deg, #0049FF 0%, #2563eb 100%);
    box-shadow: 0 4px 20px rgba(0,73,255,.5);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
}
.pb-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,73,255,.65); color: #fff; }
.pb-btn i, .pb-btn span { position: relative; z-index: 1; }
.pb-drop {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0,27,94,.18);
    padding: .5rem;
    background: #fff;
    min-width: 240px;
    margin-top: .5rem;
}
.pb-drop-head {
    display: block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #94a3b8;
    padding: .35rem 1rem .15rem;
}
.pb-drop-item {
    display: flex !important;
    align-items: center;
    gap: .65rem;
    padding: .55rem .75rem !important;
    border-radius: 10px !important;
    transition: background .15s;
    text-decoration: none;
}
.pb-drop-item:hover { background: #f8faff !important; }
.pb-drop-icon {
    width: 34px; height: 34px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
}
.pb-drop-item strong { font-size: .85rem; color: #001B5E; display: block; }
.pb-drop-item small  { font-size: .74rem; color: #64748b; }

/* ── Partner dropdown ───────────────────────────────────────── */
.fs-partner-drop {
    border: 1px solid var(--fs-border);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(26,60,110,.14);
    padding: .5rem;
    background: #fff;
}
.fs-drop-header {
    display: block;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--fs-muted);
    padding: .35rem 1rem .15rem;
}
.fs-drop-item {
    display: flex !important;
    align-items: center;
    gap: .65rem;
    padding: .55rem .75rem !important;
    border-radius: 10px !important;
    transition: background .15s;
}
.fs-drop-item:hover { background: var(--fs-bg) !important; }
.fs-drop-item strong { font-size: .87rem; color: var(--fs-primary); }
.fs-drop-item small  { font-size: .75rem; color: var(--fs-muted); }
.fs-drop-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

/* ── Hero multi-service panel ───────────────────────────────── */
.hs-panel {
    background: linear-gradient(145deg, #0f1f4d 0%, #001B5E 55%, #002080 100%);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.09);
    box-shadow: 0 32px 80px rgba(0,27,94,.45);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.hs-panel::before {
    content: '';
    position: absolute;
    top: -40%; right: -20%;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,73,255,.22) 0%, transparent 65%);
    pointer-events: none;
}
.hs-panel-label {
    font-size: .68rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,.4);
    margin-bottom: 1rem;
}
.hs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .6rem;
    margin-bottom: 1.5rem;
}
.hs-tile {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    padding: .85rem .5rem;
    display: flex; flex-direction: column;
    align-items: center; gap: .45rem;
    transition: background .18s, border-color .18s;
    cursor: default;
}
.hs-tile:hover {
    background: rgba(255,255,255,.11);
    border-color: rgba(0,73,255,.4);
}
.hs-tile-icon {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.hs-tile-lbl {
    font-size: .68rem; font-weight: 600;
    color: rgba(255,255,255,.75);
    text-align: center; line-height: 1.3;
}
.hs-divider {
    height: 1px; background: rgba(255,255,255,.08); margin-bottom: 1.2rem;
}
.hs-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem;
}
.hs-stat {
    text-align: center;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px; padding: .7rem .4rem;
}
.hs-stat-val {
    font-size: 1.05rem; font-weight: 800; color: #fff;
    line-height: 1;
}
.hs-stat-lbl {
    font-size: .65rem; color: rgba(255,255,255,.45);
    margin-top: .2rem;
}
.hs-live-bar {
    display: flex; align-items: center; gap: .5rem;
    margin-bottom: .85rem;
}
.hs-live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,.25);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.25); }
    50%      { box-shadow: 0 0 0 6px rgba(34,197,94,.08); }
}
.hs-live-txt { font-size: .72rem; color: rgba(255,255,255,.45); }

/* ── Partner Tier Diagram section ──────────────────────────── */
.pt-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: #f8fafc;
    box-sizing: border-box;
}
@media (max-width: 991.98px) {
    .pt-section {
        min-height: unset;
        padding: 3.5rem 0;
    }
}
@media (max-width: 575.98px) {
    .pt-section {
        padding: 2.5rem 0;
    }
}
.pt-header { text-align: center; margin-bottom: 3.5rem; }
.pt-badge {
    display: inline-flex; align-items: center; gap: .35rem;
    background: #eff6ff; border: 1px solid #bfdbfe;
    color: #1d4ed8; font-size: .73rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    border-radius: 999px; padding: .3rem .9rem; margin-bottom: .85rem;
}
.pt-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800; color: #0f172a; margin-bottom: .5rem;
}
.pt-sub { font-size: .95rem; color: #64748b; max-width: 560px; margin: 0 auto; }

/* tier cards row */
.pt-track { display: flex; align-items: stretch; gap: 0; }
.pt-card {
    flex: 1; position: relative;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.6rem 1.4rem;
    display: flex; flex-direction: column;
    transition: box-shadow .2s, border-color .2s, transform .2s;
}
.pt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
/* arrow connector between cards */
.pt-arrow {
    display: flex; align-items: center; justify-content: center;
    width: 40px; flex-shrink: 0; color: #94a3b8; font-size: 1.25rem;
    position: relative; z-index: 1;
}
.pt-arrow::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 32px; height: 32px; border-radius: 50%;
    background: #f1f5f9; border: 1.5px solid #e2e8f0;
}
.pt-arrow i { position: relative; z-index: 1; }

.pt-level-pill {
    display: inline-flex; align-items: center; gap: .3rem;
    font-size: .65rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; border-radius: 999px;
    padding: .22rem .75rem; margin-bottom: 1rem; width: fit-content;
}
.pt-icon {
    width: 50px; height: 50px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: .9rem;
}
.pt-role { font-size: 1.05rem; font-weight: 800; color: #0f172a; margin-bottom: .3rem; }
.pt-tagline { font-size: .8rem; color: #64748b; line-height: 1.5; margin-bottom: 1rem; }
.pt-divider { height: 1px; background: #f1f5f9; margin-bottom: 1rem; }
.pt-adds {
    font-size: .7rem; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; color: #94a3b8; margin-bottom: .5rem;
}
.pt-manages { display: flex; flex-direction: column; gap: .35rem; }
.pt-manage-chip {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .76rem; font-weight: 500; color: #475569;
    background: #f8fafc; border: 1px solid #e2e8f0;
    border-radius: 8px; padding: .3rem .65rem;
}
.pt-manage-chip i { font-size: .75rem; }
.pt-earn {
    margin-top: auto; padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    font-size: .76rem; font-weight: 600; color: #16a34a;
    display: flex; align-items: center; gap: .35rem;
}
.pt-cta-row {
    display: flex; justify-content: center; gap: 1rem;
    margin-top: 2.5rem; flex-wrap: wrap;
}
.pt-cta-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: 11px 24px; border-radius: 10px;
    font-size: .87rem; font-weight: 700;
    text-decoration: none; transition: all .18s;
}
.pt-cta-btn-primary {
    background: linear-gradient(135deg, #001B5E 0%, #0049FF 100%);
    color: #fff; box-shadow: 0 4px 16px rgba(0,73,255,.3);
}
.pt-cta-btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,73,255,.4); }
.pt-cta-btn-outline {
    background: #fff; color: #001B5E;
    border: 2px solid #001B5E;
}
.pt-cta-btn-outline:hover { background: #001B5E; color: #fff; }

/* tier colour tokens — Partner section (light bg) */
.pt-c-retailer        { --pt-c: #2563eb; --pt-bg: #eff6ff; --pt-border: #bfdbfe; }
.pt-c-distributor     { --pt-c: #16a34a; --pt-bg: #f0fdf4; --pt-border: #bbf7d0; }
.pt-c-masterdist      { --pt-c: #0d9488; --pt-bg: #f0fdfa; --pt-border: #99f6e4; }

.pt-c-retailer .pt-level-pill,
.pt-c-distributor .pt-level-pill,
.pt-c-masterdist .pt-level-pill {
    background: var(--pt-bg); color: var(--pt-c);
    border: 1px solid var(--pt-border);
}
.pt-c-retailer .pt-icon,
.pt-c-distributor .pt-icon,
.pt-c-masterdist .pt-icon {
    background: var(--pt-bg); color: var(--pt-c);
}
.pt-c-retailer.pt-card:hover    { border-color: #93c5fd; box-shadow: 0 16px 40px rgba(37,99,235,.12); }
.pt-c-distributor.pt-card:hover { border-color: #86efac; box-shadow: 0 16px 40px rgba(22,163,74,.12); }
.pt-c-masterdist.pt-card:hover  { border-color: #5eead4; box-shadow: 0 16px 40px rgba(13,148,136,.12); }

/* ── Grow with FinSathi — light warm redesign ─────────────── */
.gb-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: #f8f6f2;
    position: relative; overflow: hidden;
    box-sizing: border-box;
}
@media (max-width: 991.98px) {
    .gb-section {
        min-height: unset;
        padding: 3.5rem 0;
    }
}
@media (max-width: 575.98px) {
    .gb-section {
        padding: 2.5rem 0;
    }
}
.gb-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 45% 55% at 5% 90%, rgba(255,72,0,.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 95% 10%, rgba(124,58,237,.06) 0%, transparent 60%);
    pointer-events: none;
}
.gb-header { text-align: center; margin-bottom: 3rem; }
.gb-badge {
    display: inline-flex; align-items: center; gap: .35rem;
    background: #fff7ed; border: 1px solid #fed7aa;
    color: #ea580c; font-size: .73rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    border-radius: 999px; padding: .3rem .9rem; margin-bottom: .85rem;
}
.gb-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800; color: #0f172a; margin-bottom: .5rem;
}
.gb-sub { font-size: .95rem; color: #64748b; max-width: 540px; margin: 0 auto; }

/* cards */
.gb-card {
    background: #fff; border-radius: 24px; border: 2px solid #e2e8f0;
    padding: 2rem; height: 100%;
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.gb-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; border-radius: 24px 24px 0 0;
}
.gb-card:hover { transform: translateY(-5px); }

.gb-card-wl { border-color: #fed7aa; }
.gb-card-wl::before { background: linear-gradient(90deg, #ea580c, #f97316); }
.gb-card-wl:hover { border-color: #f97316; box-shadow: 0 20px 52px rgba(234,88,12,.13); }

.gb-card-admin { border-color: #ddd6fe; }
.gb-card-admin::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.gb-card-admin:hover { border-color: #7c3aed; box-shadow: 0 20px 52px rgba(124,58,237,.13); }

.gb-top {
    display: flex; align-items: flex-start;
    justify-content: space-between; margin-bottom: 1.25rem;
}
.gb-icon {
    width: 54px; height: 54px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.gb-card-wl   .gb-icon { background: #fff7ed; color: #ea580c; }
.gb-card-admin .gb-icon { background: #faf5ff; color: #7c3aed; }

.gb-level {
    font-size: .68rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; border-radius: 999px; padding: .25rem .8rem;
}
.gb-card-wl   .gb-level { background: #fff7ed; color: #ea580c; border: 1px solid #fed7aa; }
.gb-card-admin .gb-level { background: #faf5ff; color: #7c3aed; border: 1px solid #ddd6fe; }

.gb-role    { font-size: 1.2rem; font-weight: 800; color: #0f172a; margin-bottom: .35rem; }
.gb-tagline { font-size: .88rem; color: #64748b; line-height: 1.6; margin-bottom: 1.25rem; }

.gb-features { list-style: none; padding: 0; margin: 0 0 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.gb-feature  { display: flex; align-items: flex-start; gap: .55rem; font-size: .84rem; color: #334155; }
.gb-feature-dot {
    width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; margin-top: .06rem;
}
.gb-card-wl   .gb-feature-dot { background: #fff7ed; color: #ea580c; }
.gb-card-admin .gb-feature-dot { background: #faf5ff; color: #7c3aed; }

.gb-sep { height: 1px; background: #f1f5f9; margin: 1.25rem 0; }

.gb-manages-lbl {
    font-size: .68rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: #94a3b8; margin-bottom: .6rem;
}
.gb-chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.6rem; }
.gb-chip {
    display: inline-flex; align-items: center; gap: .35rem;
    font-size: .76rem; font-weight: 500; color: #475569;
    background: #f8fafc; border: 1px solid #e2e8f0;
    border-radius: 8px; padding: .28rem .65rem;
}
.gb-chip i { font-size: .75rem; }

.gb-cta {
    margin-top: auto; display: flex; align-items: center;
    justify-content: space-between; padding: .95rem 1.25rem;
    border-radius: 14px; text-decoration: none;
    font-weight: 700; font-size: .88rem; transition: all .18s;
}
.gb-card-wl   .gb-cta { background: #fff7ed; color: #ea580c; }
.gb-card-wl   .gb-cta:hover { background: #ea580c; color: #fff; }
.gb-card-admin .gb-cta { background: #faf5ff; color: #7c3aed; }
.gb-card-admin .gb-cta:hover { background: #7c3aed; color: #fff; }
.gb-cta-icon { font-size: 1rem; }

.gb-footer-cta {
    display: flex; justify-content: center;
    gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap;
}

@media (max-width: 991px) {
    .pt-track { flex-direction: column; }
    .pt-arrow, .pt-arrow-dark { transform: rotate(90deg); width: 100%; height: 36px; }
    .hs-grid  { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 575px) {
    .hs-grid  { grid-template-columns: repeat(4, 1fr); gap: .4rem; }
    .hs-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ── Partner & Grow sections — responsive fixes ───────────── */

/* Role cards: shrink icon + padding on tablet */
@media (max-width: 991.98px) {
    .pt-role-card, .gb-role-card { padding: 1.4rem 1.5rem !important; }
    .pt-role-icon { width: 54px !important; height: 54px !important; font-size: 1.3rem !important; }
    .gb-role-icon { width: 58px !important; height: 58px !important; font-size: 1.5rem !important; }
}

/* Mobile: compact everything */
@media (max-width: 575.98px) {
    /* Stats row → 3 equal small cols */
    .pt-stats-grid {
        grid-template-columns: repeat(3,1fr) !important;
        gap: .5rem !important;
        padding: .9rem .75rem !important;
    }
    .pt-stats-grid > div > div:first-child { font-size: 1.2rem !important; }

    /* Role cards: stack icon+text vertically on very small */
    .pt-role-row, .gb-role-row {
        flex-direction: column !important;
        gap: .9rem !important;
    }
    .pt-role-icon, .gb-role-icon {
        width: 48px !important; height: 48px !important;
        font-size: 1.2rem !important;
        border-radius: 12px !important;
    }
    /* Earn label: inline instead of absolute right */
    .pt-earn-col { text-align: left !important; }

    /* Revenue highlight box */
    .gb-revenue-box { padding: .75rem 1rem !important; }

    /* Section headings scale down further */
    .pt-section h2, .gb-section h2 {
        font-size: clamp(1.6rem, 5vw, 2.2rem) !important;
    }

    /* CTA buttons full width on mobile */
    .pt-section a[href], .gb-section a[href] { width: 100%; justify-content: center; }
}

/* Large screens: cap container width so content isn't stretched */
@media (min-width: 1400px) {
    .pt-section .container,
    .gb-section .container {
        max-width: 1180px;
    }
}

/* ── Newsletter Subscribe Section ─────────────────────────────────────── */
.fs-subscribe-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--fs-primary) 0%, #0049ff 100%);
}
.fs-subscribe-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.fs-subscribe-text {
    flex: 1 1 320px;
}
.fs-subscribe-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: .5rem;
    line-height: 1.2;
}
.fs-subscribe-sub {
    color: rgba(255,255,255,.8);
    font-size: .97rem;
    margin-bottom: 0;
}
.fs-subscribe-text .fs-section-badge {
    display: inline-block;
}
.fs-subscribe-form-wrap {
    flex: 1 1 360px;
}
.fs-subscribe-form {}
.fs-sub-row {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.fs-sub-input {
    width: 100%;
    padding: .75rem 1rem;
    border: none;
    border-radius: .75rem;
    font-size: .95rem;
    background: rgba(255,255,255,.15);
    color: #fff;
    outline: none;
    backdrop-filter: blur(8px);
}
.fs-sub-input::placeholder { color: rgba(255,255,255,.65); }
.fs-sub-input:focus { background: rgba(255,255,255,.25); }
.fs-sub-btn {
    width: 100%;
    justify-content: center;
}
.fs-sub-msg {
    margin-top: .75rem;
    font-size: .88rem;
    padding: .5rem .75rem;
    border-radius: .5rem;
}
.fs-sub-ok  { background: rgba(255,255,255,.15); color: #fff; }
.fs-sub-err { background: rgba(239,68,68,.2);   color: #ffd4d4; }

@media (max-width: 767.98px) {
    .fs-subscribe-inner { flex-direction: column; gap: 2rem; }
    .fs-subscribe-text  { text-align: center; }
}
