/*
 * Cisco WS-2960 landing - custom stylesheet.
 * Mirrors design tokens from server-landing.css.
 * B-2: top review band, hero, stats strip.
 */

/* ============================================
   B-2: SHARED TYPOGRAPHY (scoped to landing wrapper)
   ============================================ */
.tkci-2960-landing h1,
.tkci-2960-landing h2,
.tkci-2960-landing h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    letter-spacing: -0.3px;
    margin: 0 0 14px;
    line-height: 1.15;
}
.tkci-2960-landing p { margin: 0 0 10px; }
.tkci-2960-landing a { text-decoration: none; }

/* ============================================
   B-2: TOP REVIEW BAND (full-bleed 4-stop gradient)
   ============================================ */
.tkci-2960-reviews-top {
    background: linear-gradient(-45deg, #5dabe5, #31a3dd, #0066A1, #1E3A8A);
    padding: 40px 32px;
    color: #ffffff;
    font-family: 'Raleway', 'Open Sans', sans-serif;
}
.tkci-2960-reviews-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.tkci-2960-review {
    padding: 8px 0;
}
.tkci-2960-review-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}
.tkci-2960-stars {
    color: #fbbf24;
    font-size: 15px;
    letter-spacing: 3px;
    line-height: 1;
}
.tkci-2960-attrib {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
}
.tkci-2960-review-body {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.55;
    font-style: normal;
}

/* ============================================
   B-2: HERO
   ============================================ */
.tkci-2960-hero {
    background: #ffffff;
    padding: 56px 32px 40px;
}
.tkci-2960-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.tkci-2960-kicker {
    display: inline-block;
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: 'Raleway', sans-serif;
}
.tkci-2960-h1 {
    font-size: 34px;
    color: #0A1628;
    letter-spacing: -0.5px;
    margin: 0 0 18px;
    line-height: 1.15;
    font-weight: 500;
}
.tkci-2960-lede {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 800px;
}
.tkci-2960-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.tkci-2960-btn {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    text-decoration: none !important;
}
.tkci-2960-btn-primary {
    background: #0066A1;
    color: #ffffff !important;
}
.tkci-2960-btn-primary:hover {
    background: #005282;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,102,161,.25);
}
.tkci-2960-btn-outline {
    background: transparent;
    color: #0066A1 !important;
    border: 2px solid #0066A1;
    padding: 11px 24px;
}
.tkci-2960-btn-outline:hover {
    background: #E6F1FB;
    color: #0066A1 !important;
    transform: translateY(-1px);
}

/* ============================================
   B-2: STATS STRIP
   ============================================ */
.tkci-2960-stats {
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 26px 32px;
}
.tkci-2960-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.tkci-2960-stat {
    text-align: center;
    flex: 1 1 auto;
    min-width: 100px;
}
.tkci-2960-stat-num {
    color: #0066A1;
    font-size: 26px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 6px;
}
.tkci-2960-stat-red .tkci-2960-stat-num { color: #DC2626; }
.tkci-2960-stat-lbl {
    color: #475569;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2px;
}
.tkci-2960-stat-divider {
    width: 1px;
    height: 34px;
    background: #e5e7eb;
    flex: 0 0 auto;
}

/* ============================================
   B-2: RESPONSIVE
   ============================================ */
@media (max-width: 700px) {
    .tkci-2960-h1 { font-size: 28px; }
    .tkci-2960-lede { font-size: 15px; }
    .tkci-2960-hero { padding: 40px 24px 32px; }
    .tkci-2960-reviews-top { padding: 32px 24px; }
    .tkci-2960-stats { padding: 20px 24px; }
    .tkci-2960-stat-num { font-size: 22px; }
}
@media (max-width: 640px) {
    .tkci-2960-h1 { font-size: 24px; }
    .tkci-2960-stat-divider { display: none; }
    .tkci-2960-stats-inner { gap: 20px 12px; }
    .tkci-2960-stat { flex: 1 1 40%; }
    .tkci-2960-review-head { flex-direction: column; align-items: flex-start; }
    .tkci-2960-attrib { font-size: 11px; }
    .tkci-2960-review-body { font-size: 14px; }
    .tkci-2960-ctas { flex-direction: column; }
    .tkci-2960-btn { text-align: center; }
}


/* ============================================
   B-3: EOL CALLOUT (beige full-bleed)
   ============================================ */
.tkci-2960-eol {
    background: #FEF5EB;
    padding: 44px 32px;
    text-align: center;
    border-top: 2px solid #FBD9B0;
    border-bottom: 2px solid #FBD9B0;
}
.tkci-2960-eol-inner {
    max-width: 900px;
    margin: 0 auto;
}
.tkci-2960-eol-date {
    color: #0066A1;
    font-size: 22px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
    line-height: 1.3;
}
.tkci-2960-eol-date strong { color: #0A1628; font-weight: 700; }
.tkci-2960-eol-status {
    color: #475569;
    font-size: 15px;
    margin-bottom: 22px;
    font-family: 'Raleway', sans-serif;
}
.tkci-2960-eol-status strong { color: #0066A1; font-weight: 600; }
.tkci-2960-eol-cta {
    display: inline-block;
    background: #DC2626;
    color: #ffffff !important;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.2px;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    text-decoration: none !important;
}
.tkci-2960-eol-cta:hover {
    background: #b91c1c;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(220,38,38,.3);
}

/* ============================================
   B-3: LIFECYCLE TIMELINE (dark navy full-bleed)
   ============================================ */
.tkci-2960-lifecycle {
    background: #0A1628;
    padding: 64px 32px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.tkci-2960-lifecycle::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(49,163,221,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(49,163,221,.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.tkci-2960-lifecycle-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.tkci-2960-section-head-dark {
    text-align: center;
    margin-bottom: 36px;
}
.tkci-2960-rule {
    display: inline-block;
    width: 36px;
    height: 2px;
    background: #31a3dd;
    margin-bottom: 16px;
}
.tkci-2960-h2-dark {
    font-size: 26px;
    color: #ffffff;
    margin: 0 0 12px;
    font-weight: 500;
    letter-spacing: -0.3px;
    font-family: 'Raleway', sans-serif;
    line-height: 1.2;
}
.tkci-2960-subhead-callout {
    display: inline-block;
    background: linear-gradient(-45deg, #5dabe5, #31a3dd, #0066A1, #1E3A8A);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 22px;
    border-radius: 10px;
    line-height: 1.5;
    max-width: 720px;
    margin-top: 4px;
}
.tkci-2960-timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 1000px;
    margin: 0 auto;
}
.tkci-2960-timeline-card {
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(49,163,221,0.35);
    border-radius: 12px;
    padding: 22px 14px 20px;
    text-align: center;
}
.tkci-2960-timeline-card-red { border-color: rgba(220,38,38,0.5); }
.tkci-2960-timeline-card-green { border-color: rgba(34,197,94,0.5); background: rgba(34,197,94,0.06); }
.tkci-2960-timeline-pill {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
    margin-bottom: 14px;
    font-family: 'Raleway', sans-serif;
}
.tkci-2960-timeline-pill-blue { background: #0066A1; }
.tkci-2960-timeline-pill-red { background: #DC2626; }
.tkci-2960-timeline-pill-green { background: #16a34a; }
.tkci-2960-timeline-label {
    font-size: 13px;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
    line-height: 1.4;
}
.tkci-2960-timeline-label-red { color: #fca5a5; }
.tkci-2960-timeline-label-green { color: #86efac; }

/* ============================================
   B-3: TECHNICAL SPECIFICATIONS (light gray full-bleed)
   ============================================ */
.tkci-2960-techspecs {
    background: #f8fafc;
    padding: 56px 32px;
    border-bottom: 1px solid #e5e7eb;
}
.tkci-2960-techspecs-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.tkci-2960-techspecs-heading {
    display: inline-block;
    background: #0066A1;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 14px;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Raleway', sans-serif;
}
.tkci-2960-techspecs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}
.tkci-2960-techspecs-card {
    padding: 20px 22px;
    background: #ffffff;
    border: 2px solid #31a3dd;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.tkci-2960-techspecs-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(49,163,221,0.15);
}
.tkci-2960-techspecs-lbl {
    font-size: 11px;
    color: #0066A1;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Raleway', sans-serif;
}
.tkci-2960-techspecs-val {
    font-size: 14px;
    color: #0A1628;
    font-weight: 500;
    line-height: 1.5;
}

/* ============================================
   B-3: RESPONSIVE
   ============================================ */
@media (max-width: 700px) {
    .tkci-2960-eol-date { font-size: 18px; }
    .tkci-2960-lifecycle { padding: 48px 24px; }
    .tkci-2960-timeline-grid { grid-template-columns: repeat(2, 1fr); }
    .tkci-2960-techspecs { padding: 40px 24px; }
    .tkci-2960-h2-dark { font-size: 22px; }
}
@media (max-width: 500px) {
    .tkci-2960-timeline-grid { grid-template-columns: 1fr; }
    .tkci-2960-eol-cta { font-size: 13px; padding: 12px 22px; }
    .tkci-2960-eol-date { font-size: 16px; }
}



/* ============================================
   B-3.1: WHITE-BG RECOLOR (overrides above)
   ============================================ */

/* EOL callout: beige -> white, keep borders faint */
.tkci-2960-landing .tkci-2960-eol {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

/* Lifecycle band: dark navy -> white */
.tkci-2960-landing .tkci-2960-lifecycle {
    background: #ffffff;
    color: #0A1628;
    border-bottom: 1px solid #e5e7eb;
}
.tkci-2960-landing .tkci-2960-lifecycle::before { display: none; } /* kill dark grid overlay */

/* Section header on light bg */
.tkci-2960-landing .tkci-2960-h2-dark { color: #0A1628; }

/* Subhead callout pill stays blue gradient - untouched by design decision */

/* Timeline cards: dark -> white cards with blue border, dark text */
.tkci-2960-landing .tkci-2960-timeline-card {
    background: #ffffff;
    border: 2px solid #31a3dd;
    box-shadow: 0 2px 8px rgba(0,102,161,0.06);
}
.tkci-2960-landing .tkci-2960-timeline-card-red {
    border-color: #DC2626;
    background: #ffffff;
}
.tkci-2960-landing .tkci-2960-timeline-card-green {
    border-color: #16a34a;
    background: #f0fdf4;
}
.tkci-2960-landing .tkci-2960-timeline-label { color: #475569; }
.tkci-2960-landing .tkci-2960-timeline-label-red { color: #DC2626; }
.tkci-2960-landing .tkci-2960-timeline-label-green { color: #16a34a; }

/* Pills stay their colored fills - they already read well on white */


/* ============================================
   B-3.2: EOL callout to blue gradient + hide stray rule line
   ============================================ */
.tkci-2960-landing .tkci-2960-eol { background: linear-gradient(-45deg, #5dabe5, #31a3dd, #0066A1, #1E3A8A); border-top: 0; border-bottom: 0; color: #ffffff; }
.tkci-2960-landing .tkci-2960-eol-date { color: #ffffff; }
.tkci-2960-landing .tkci-2960-eol-date strong { color: #ffffff; font-weight: 700; }
.tkci-2960-landing .tkci-2960-eol-status { color: #ffffff; }
.tkci-2960-landing .tkci-2960-eol-status strong { color: #ffffff; }
.tkci-2960-landing .tkci-2960-lifecycle .tkci-2960-rule { display: none; }
.tkci-2960-landing .tkci-2960-lifecycle .tkci-2960-section-head-dark { padding-top: 8px; }


/* ============================================
   B-4: BODY PROSE
   ============================================ */
.tkci-2960-landing .tkci-2960-prose {
    background: #ffffff;
    padding: 56px 32px 48px;
}
.tkci-2960-landing .tkci-2960-prose-inner {
    max-width: 880px;
    margin: 0 auto;
}
.tkci-2960-landing .tkci-2960-prose p {
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
    margin: 0 0 16px;
    font-family: 'Raleway', 'Open Sans', sans-serif;
}
.tkci-2960-landing .tkci-2960-prose p strong { color: #0A1628; font-weight: 600; }
.tkci-2960-landing .tkci-2960-prose-h2 {
    font-size: 22px;
    color: #0A1628;
    font-weight: 500;
    letter-spacing: -0.3px;
    margin: 32px 0 14px;
    font-family: 'Raleway', sans-serif;
    line-height: 1.25;
}
.tkci-2960-landing .tkci-2960-prose-link { color: #0066A1; text-decoration: underline; }
.tkci-2960-landing .tkci-2960-prose-link:hover { color: #005282; }
.tkci-2960-landing .tkci-2960-prose-note {
    font-size: 12px !important;
    color: #94a3b8 !important;
    margin-top: 32px !important;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    line-height: 1.55 !important;
}

/* ============================================
   B-4.4: COMPACT QUOTE FORM (mirrors Cisco manufacturer page)
   ============================================ */
.tkci-2960-landing .tkci-2960-quote-section {
    background: #ffffff;
    padding: 56px 32px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
.tkci-2960-landing .tkci-2960-quote-inner {
    max-width: 900px;
    margin: 0 auto;
}
.tkci-2960-landing .tkci-2960-quote-card {
    background: linear-gradient(-45deg, #5dabe5, #31a3dd, #0066A1, #1E3A8A);
    border-radius: 10px;
    padding: 22px 28px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.tkci-2960-landing .tkci-2960-quote-shine {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.07) 50%, transparent 80%);
    pointer-events: none;
}
.tkci-2960-landing .tkci-2960-quote-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 3px 0;
    position: relative;
}
.tkci-2960-landing .tkci-2960-quote-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 16px 0;
    position: relative;
}
.tkci-2960-landing .tkci-2960-quote-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    position: relative;
}
.tkci-2960-landing .tkci-2960-quote-input {
    flex: 1;
    min-width: 160px;
    padding: 11px 14px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    color: #1a1a1a;
    background: #ffffff;
    box-sizing: border-box;
    outline: none;
}
.tkci-2960-landing .tkci-2960-quote-btn {
    padding: 11px 22px;
    background: linear-gradient(135deg, #DC2626 0%, #9B1C1C 60%, #7F1D1D 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(153,28,28,0.4);
    transition: transform 0.2s;
}
.tkci-2960-landing .tkci-2960-quote-btn:hover:not([disabled]) {
    transform: translateY(-1px);
}
.tkci-2960-landing .tkci-2960-quote-btn[disabled] {
    opacity: 0.7;
    cursor: default;
}

/* ============================================
   B-4: BOTTOM REVIEWS BAND (2-col gradient)
   ============================================ */
.tkci-2960-landing .tkci-2960-reviews-bottom {
    background: linear-gradient(-45deg, #5dabe5, #31a3dd, #0066A1, #1E3A8A);
    padding: 56px 32px;
    color: #ffffff;
}
.tkci-2960-landing .tkci-2960-reviews-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.tkci-2960-landing .tkci-2960-review-card {
    padding: 8px 4px;
}
.tkci-2960-landing .tkci-2960-review-card .tkci-2960-stars {
    color: #fbbf24;
    font-size: 15px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.tkci-2960-landing .tkci-2960-review-card .tkci-2960-attrib {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
}
.tkci-2960-landing .tkci-2960-review-card .tkci-2960-review-body {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.55;
}

/* ============================================
   B-4: TOPICAL AUTHORITY (Phase 4B anchor) - subtle, non-blocking
   ============================================ */
.tkci-2960-landing .tkci-2960-topical {
    background: #ffffff;
    padding: 40px 32px;
    border-bottom: 1px solid #e5e7eb;
}
.tkci-2960-landing .tkci-2960-topical-inner {
    max-width: 880px;
    margin: 0 auto;
}
.tkci-2960-landing .tkci-2960-topical p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-family: 'Raleway', sans-serif;
}
.tkci-2960-landing .tkci-2960-topical p strong { color: #0A1628; font-weight: 600; }
.tkci-2960-landing .tkci-2960-topical p a { color: #0066A1; text-decoration: underline; }
.tkci-2960-landing .tkci-2960-topical p a:hover { color: #005282; }

/* ============================================
   B-4: TRUST BLOCK (final gradient CTA)
   ============================================ */
.tkci-2960-landing .tkci-2960-trust {
    background: linear-gradient(135deg, #0066A1 0%, #31a3dd 50%, #0066A1 100%);
    padding: 64px 32px;
    color: #ffffff;
    text-align: center;
}
.tkci-2960-landing .tkci-2960-trust-inner {
    max-width: 780px;
    margin: 0 auto;
}
.tkci-2960-landing .tkci-2960-trust-h3 {
    color: #ffffff;
    font-size: 28px;
    margin: 0 0 14px;
    font-weight: 500;
    letter-spacing: -0.3px;
    font-family: 'Raleway', sans-serif;
    line-height: 1.2;
}
.tkci-2960-landing .tkci-2960-trust-lede {
    color: rgba(255,255,255,0.92);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 28px;
    font-family: 'Raleway', sans-serif;
}
.tkci-2960-landing .tkci-2960-trust-cta {
    display: inline-block;
    background: #DC2626;
    color: #ffffff !important;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none !important;
}
.tkci-2960-landing .tkci-2960-trust-cta:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

/* ============================================
   B-4: RESPONSIVE
   ============================================ */
@media (max-width: 720px) {
    .tkci-2960-landing .tkci-2960-reviews-bottom-inner { grid-template-columns: 1fr; gap: 20px; }
    .tkci-2960-landing .tkci-2960-form-title { font-size: 22px; }
    .tkci-2960-landing .tkci-2960-trust-h3 { font-size: 22px; }
    .tkci-2960-landing .tkci-2960-prose-h2 { font-size: 19px; }
    .tkci-2960-landing .tkci-2960-prose { padding: 40px 24px 32px; }
    .tkci-2960-landing .tkci-2960-form-section { padding: 48px 24px; }
    .tkci-2960-landing .tkci-2960-form-card { padding: 24px 20px; }
    .tkci-2960-landing .tkci-2960-trust { padding: 48px 24px; }
}


/* ============================================
   B-4.1: TRUST BLOCK verbatim content styling
   ============================================ */
.tkci-2960-landing .tkci-2960-trust {
    text-align: left;
    padding: 64px 32px;
}
.tkci-2960-landing .tkci-2960-trust-inner {
    max-width: 900px;
    margin: 0 auto;
}
.tkci-2960-landing .tkci-2960-trust-intro {
    color: rgba(255,255,255,0.95);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 12px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}
.tkci-2960-landing .tkci-2960-trust-p {
    color: rgba(255,255,255,0.92);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 10px;
    font-family: 'Raleway', sans-serif;
}
.tkci-2960-landing .tkci-2960-trust-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    font-family: 'Raleway', sans-serif;
}
.tkci-2960-landing .tkci-2960-trust-list li {
    color: rgba(255,255,255,0.92);
    font-size: 14px;
    line-height: 1.65;
    padding: 6px 0 6px 22px;
    position: relative;
}
.tkci-2960-landing .tkci-2960-trust-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 15px;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.75;
}
.tkci-2960-landing .tkci-2960-trust-list li strong {
    color: #ffffff;
    font-weight: 600;
}
.tkci-2960-landing .tkci-2960-trust-h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.3px;
    margin: 28px 0 12px;
    font-family: 'Raleway', sans-serif;
    line-height: 1.25;
}
.tkci-2960-landing .tkci-2960-trust-cta-wrap {
    text-align: center;
    margin-top: 24px;
}

@media (max-width: 720px) {
    .tkci-2960-landing .tkci-2960-trust { padding: 48px 24px; }
    .tkci-2960-landing .tkci-2960-trust-h3 { font-size: 19px; }
    .tkci-2960-landing .tkci-2960-trust-list li { font-size: 13px; }
}






/* ============================================
   B-4.3: EOL MODELS SUPPORTED section
   ============================================ */
.tkci-2960-landing .tkci-2960-models {
    background: #ffffff;
    padding: 56px 32px;
    border-bottom: 1px solid #e5e7eb;
}
.tkci-2960-landing .tkci-2960-models-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.tkci-2960-landing .tkci-2960-models-heading {
    display: inline-block;
    background: #0066A1;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 14px;
    margin-bottom: 16px;
    font-family: 'Raleway', sans-serif;
}
.tkci-2960-landing .tkci-2960-models-lede {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 28px;
    font-family: 'Raleway', sans-serif;
}
.tkci-2960-landing .tkci-2960-models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto 24px;
}
.tkci-2960-landing .tkci-2960-model-card {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    padding: 14px 8px;
    font-size: 13px;
    font-weight: 600;
    color: #0A1628;
    letter-spacing: 0.2px;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    cursor: default;
}
.tkci-2960-landing .tkci-2960-model-card:hover {
    transform: translateY(-2px);
    border-color: #31a3dd;
    box-shadow: 0 6px 16px rgba(49,163,221,0.15);
    color: #0066A1;
}
.tkci-2960-landing .tkci-2960-models-datasheet {
    color: #64748b;
    font-size: 13px;
    margin: 8px 0 0;
    font-family: 'Raleway', sans-serif;
}
.tkci-2960-landing .tkci-2960-models-datasheet a {
    color: #0066A1;
    font-weight: 600;
    text-decoration: none;
}
.tkci-2960-landing .tkci-2960-models-datasheet a:hover {
    color: #005282;
    text-decoration: underline;
}

@media (max-width: 700px) {
    .tkci-2960-landing .tkci-2960-models-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .tkci-2960-landing .tkci-2960-models { padding: 40px 24px; }
    .tkci-2960-landing .tkci-2960-models-grid { grid-template-columns: 1fr; }
}


/* ============================================
   B-4.5: Trust intro promoted to section header
   ============================================ */
.tkci-2960-landing .tkci-2960-trust-intro {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 1.3;
    margin: 0 0 20px;
    font-family: 'Raleway', sans-serif;
}

@media (max-width: 720px) {
    .tkci-2960-landing .tkci-2960-trust-intro { font-size: 20px; }
}

/* ============================================
   EDIT 1: Force H2 visibility — theme's global H2 reset was hiding these.
   Mirrors defensive pattern from tkci-h2-promoted (mu-plugin post 4193).
   ============================================ */
.tkci-2960-landing .tkci-2960-prose-h2,
.tkci-2960-landing .tkci-2960-h2-dark {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    overflow: visible !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    clip: auto !important;
    clip-path: none !important;
    transform: none !important;
    text-indent: 0 !important;
    white-space: normal !important;
    font-family: 'Raleway', 'Open Sans', sans-serif !important;
    text-transform: none !important;
    line-height: 1.25 !important;
    letter-spacing: -0.3px !important;
}
.tkci-2960-landing .tkci-2960-prose-h2 {
    font-size: 22px !important;
    color: #0A1628 !important;
    font-weight: 700 !important;
    margin: 32px 0 14px !important;
    text-align: left !important;
}
.tkci-2960-landing .tkci-2960-h2-dark {
    font-size: 26px !important;
    color: #0A1628 !important;
    font-weight: 500 !important;
    margin: 0 0 12px !important;
    text-align: center !important;
}
@media (max-width: 720px) {
    .tkci-2960-landing .tkci-2960-prose-h2 { font-size: 19px !important; }
    .tkci-2960-landing .tkci-2960-h2-dark { font-size: 22px !important; }
}

/* ============================================
   EDIT 3: Proportional font size bump across the landing page.
   Kept as last-cascade overrides so B-3.1/B-3.2 recolor blocks don't win.
   ============================================ */
.tkci-2960-landing .tkci-2960-h1 { font-size: 38px !important; }
.tkci-2960-landing .tkci-2960-lede { font-size: 17px !important; }
.tkci-2960-landing .tkci-2960-stat-num { font-size: 30px !important; }
.tkci-2960-landing .tkci-2960-stat-lbl { font-size: 13px !important; }
.tkci-2960-landing .tkci-2960-eol-date { font-size: 24px !important; }
.tkci-2960-landing .tkci-2960-eol-status { font-size: 16px !important; }
.tkci-2960-landing .tkci-2960-eol-cta { font-size: 15px !important; }
.tkci-2960-landing .tkci-2960-prose p { font-size: 16px !important; }
.tkci-2960-landing .tkci-2960-prose-h2 { font-size: 24px !important; }
.tkci-2960-landing .tkci-2960-h2-dark { font-size: 28px !important; }
.tkci-2960-landing .tkci-2960-review-body { font-size: 16px !important; }
.tkci-2960-landing .tkci-2960-attrib { font-size: 14px !important; }
.tkci-2960-landing .tkci-2960-trust-intro { font-size: 26px !important; }
.tkci-2960-landing .tkci-2960-trust-h3 { font-size: 24px !important; }
.tkci-2960-landing .tkci-2960-trust-list li { font-size: 15px !important; }
.tkci-2960-landing .tkci-2960-trust-p { font-size: 15px !important; }
.tkci-2960-landing .tkci-2960-techspecs-val { font-size: 15px !important; }
.tkci-2960-landing .tkci-2960-topical p { font-size: 15px !important; }
@media (max-width: 720px) {
    .tkci-2960-landing .tkci-2960-h1 { font-size: 26px !important; }
    .tkci-2960-landing .tkci-2960-lede { font-size: 15px !important; }
    .tkci-2960-landing .tkci-2960-stat-num { font-size: 24px !important; }
    .tkci-2960-landing .tkci-2960-h2-dark { font-size: 22px !important; }
    .tkci-2960-landing .tkci-2960-prose-h2 { font-size: 20px !important; }
    .tkci-2960-landing .tkci-2960-trust-intro { font-size: 21px !important; }
    .tkci-2960-landing .tkci-2960-trust-h3 { font-size: 20px !important; }
}

/* EDIT 5 companion: "Up to 90%" is wider than "80%", scale slightly */
.tkci-2960-landing .tkci-2960-stat-red .tkci-2960-stat-num { font-size: 26px !important; letter-spacing: -0.4px; }
@media (max-width: 720px) {
    .tkci-2960-landing .tkci-2960-stat-red .tkci-2960-stat-num { font-size: 20px !important; }
}

/* ============================================
   EDIT 7: Tighter section padding — 56/64 -> 36/40 verticals.
   Horizontal padding unchanged for edge margins.
   ============================================ */
.tkci-2960-landing .tkci-2960-hero { padding: 36px 32px 28px !important; }
.tkci-2960-landing .tkci-2960-reviews-top { padding: 28px 32px !important; }
.tkci-2960-landing .tkci-2960-stats { padding: 20px 32px !important; }
.tkci-2960-landing .tkci-2960-eol { padding: 32px 32px !important; }
.tkci-2960-landing .tkci-2960-lifecycle { padding: 40px 32px !important; }
.tkci-2960-landing .tkci-2960-techspecs { padding: 36px 32px !important; }
.tkci-2960-landing .tkci-2960-models { padding: 36px 32px !important; }
.tkci-2960-landing .tkci-2960-prose { padding: 36px 32px 28px !important; }
.tkci-2960-landing .tkci-2960-quote-section { padding: 36px 32px !important; }
.tkci-2960-landing .tkci-2960-reviews-bottom { padding: 36px 32px !important; }
.tkci-2960-landing .tkci-2960-topical { padding: 28px 32px !important; }
.tkci-2960-landing .tkci-2960-trust { padding: 40px 32px !important; }
.tkci-2960-landing .tkci-2960-prose-h2 { margin: 22px 0 10px !important; }
.tkci-2960-landing .tkci-2960-section-head-dark { margin-bottom: 24px !important; }
@media (max-width: 720px) {
    .tkci-2960-landing .tkci-2960-hero { padding: 28px 22px 22px !important; }
    .tkci-2960-landing .tkci-2960-stats { padding: 18px 22px !important; }
    .tkci-2960-landing .tkci-2960-eol { padding: 26px 22px !important; }
    .tkci-2960-landing .tkci-2960-lifecycle { padding: 30px 22px !important; }
    .tkci-2960-landing .tkci-2960-techspecs { padding: 28px 22px !important; }
    .tkci-2960-landing .tkci-2960-models { padding: 28px 22px !important; }
    .tkci-2960-landing .tkci-2960-prose { padding: 28px 22px 22px !important; }
    .tkci-2960-landing .tkci-2960-quote-section { padding: 28px 22px !important; }
    .tkci-2960-landing .tkci-2960-reviews-bottom { padding: 28px 22px !important; }
    .tkci-2960-landing .tkci-2960-topical { padding: 22px 22px !important; }
    .tkci-2960-landing .tkci-2960-trust { padding: 32px 22px !important; }
}

/* ============================================
   EDIT 8: Subhead callout ("Cisco stopped supporting the 2960 in 2019...")
   promoted from caption size to lead-in statement size.
   Timeline pills intentionally untouched.
   ============================================ */
.tkci-2960-landing .tkci-2960-subhead-callout {
    font-size: 18px !important;
    padding: 16px 28px !important;
    line-height: 1.5 !important;
    max-width: 820px !important;
}
@media (max-width: 720px) {
    .tkci-2960-landing .tkci-2960-subhead-callout {
        font-size: 16px !important;
        padding: 14px 22px !important;
    }
}

/* ============================================
   ROUND 2 - EDIT 9: Bold hero H1 + lifecycle H2 to match .tkci-2960-prose-h2 weight.
   ============================================ */
.tkci-2960-landing .tkci-2960-h1 { font-weight: 700 !important; }
.tkci-2960-landing .tkci-2960-h2-dark { font-weight: 700 !important; }

/* ============================================
   ROUND 2 - EDIT 10: Subhead callout -> 22px, wider max-width so text stays
   on one line at desktop widths. Responsive @720 already downshifts to 16px.
   ============================================ */
.tkci-2960-landing .tkci-2960-subhead-callout {
    font-size: 22px !important;
    padding: 18px 32px !important;
    line-height: 1.4 !important;
    max-width: 1050px !important;
}
@media (max-width: 700px) {
    .tkci-2960-landing .tkci-2960-subhead-callout {
        font-size: 18px !important;
        padding: 16px 24px !important;
        max-width: 100% !important;
    }
}
@media (max-width: 720px) {
    .tkci-2960-landing .tkci-2960-subhead-callout {
        font-size: 16px !important;
        padding: 14px 20px !important;
    }
}

/* ============================================
   ROUND 2 - EDIT 11: New prose sub-heading + divider + bulleted list.
   Mirrors screenshot content structure.
   ============================================ */
.tkci-2960-landing .tkci-2960-prose-h3 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    position: static !important;
    clip: auto !important;
    clip-path: none !important;
    transform: none !important;
    text-indent: 0 !important;
    white-space: normal !important;
    font-family: 'Raleway', 'Open Sans', sans-serif !important;
    text-transform: none !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0A1628 !important;
    line-height: 1.3 !important;
    margin: 24px 0 12px !important;
    letter-spacing: -0.2px !important;
    text-align: left !important;
}
.tkci-2960-landing .tkci-2960-prose-list {
    list-style: disc !important;
    padding-left: 26px !important;
    margin: 0 0 20px !important;
    font-family: 'Raleway', 'Open Sans', sans-serif !important;
}
.tkci-2960-landing .tkci-2960-prose-list li {
    font-size: 16px !important;
    color: #475569 !important;
    line-height: 1.7 !important;
    margin: 0 0 8px !important;
}
.tkci-2960-landing .tkci-2960-prose-list li strong {
    color: #0A1628 !important;
    font-weight: 600 !important;
}
.tkci-2960-landing .tkci-2960-prose-divider {
    border: 0 !important;
    border-top: 1px solid #0066A1 !important;
    margin: 28px 0 20px !important;
    height: 0 !important;
    background: none !important;
    display: block !important;
}
@media (max-width: 720px) {
    .tkci-2960-landing .tkci-2960-prose-h3 { font-size: 16px !important; }
    .tkci-2960-landing .tkci-2960-prose-list li { font-size: 15px !important; }
}

/* ============================================
   ROUND 2c - EDIT 12: Bold the subhead callout.
   Same size + width, heavier weight only.
   ============================================ */
.tkci-2960-landing .tkci-2960-subhead-callout {
    font-weight: 700 !important;
}

/* ============================================
   ROUND 3 - EDIT 15: Styles for 3 new sections
   (blurb + listable + FAQ blue-gradient accordion)
   ============================================ */

/* -- BLURB section -- */
.tkci-2960-landing .tkci-2960-r3-blurb {
    padding: 40px 28px 32px !important;
    background: #ffffff !important;
    border-top: 1px solid #eef1f4 !important;
}
.tkci-2960-landing .tkci-2960-r3-inner {
    max-width: 820px !important;
    margin: 0 auto !important;
}
.tkci-2960-landing .tkci-2960-r3-eyebrow {
    font-size: 11px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #31a3dd !important;
    font-weight: 700 !important;
    margin: 0 0 6px !important;
    font-family: 'Raleway', 'Open Sans', sans-serif !important;
}
.tkci-2960-landing .tkci-2960-r3-h2 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    position: static !important;
    text-indent: 0 !important;
    white-space: normal !important;
    clip: auto !important;
    clip-path: none !important;
    transform: none !important;
    font-family: 'Raleway', 'Open Sans', sans-serif !important;
    text-transform: none !important;
    font-size: 26px !important;
    color: #0A1628 !important;
    font-weight: 700 !important;
    margin: 0 0 8px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.2px !important;
    text-align: left !important;
}
.tkci-2960-landing .tkci-2960-r3-blurb-text {
    font-size: 15px !important;
    color: #334155 !important;
    line-height: 1.75 !important;
    margin: 14px 0 0 !important;
    font-family: 'Raleway', 'Open Sans', sans-serif !important;
}
.tkci-2960-landing .tkci-2960-r3-blurb-text strong {
    color: #0A1628 !important;
    font-weight: 600 !important;
}

/* -- LISTABLE section (flat 2-column bullets) -- */
.tkci-2960-landing .tkci-2960-r3-list-section {
    padding: 32px 28px !important;
    background: #f8fafc !important;
    border-top: 1px solid #eef1f4 !important;
    border-bottom: 1px solid #eef1f4 !important;
}
.tkci-2960-landing .tkci-2960-r3-list-lead {
    font-size: 14px !important;
    color: #475569 !important;
    margin: 0 0 14px !important;
    line-height: 1.65 !important;
    font-family: 'Raleway', 'Open Sans', sans-serif !important;
}
.tkci-2960-landing .tkci-2960-r3-list-lead strong {
    color: #0A1628 !important;
    font-weight: 600 !important;
}
.tkci-2960-landing .tkci-2960-r3-list {
    padding-left: 22px !important;
    margin: 0 !important;
    columns: 2 !important;
    column-gap: 36px !important;
    list-style: disc !important;
    font-family: 'Raleway', 'Open Sans', sans-serif !important;
}
.tkci-2960-landing .tkci-2960-r3-list li {
    font-size: 14px !important;
    color: #334155 !important;
    line-height: 1.75 !important;
    margin: 0 0 4px !important;
    break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
    page-break-inside: avoid !important;
}
@media (max-width: 720px) {
    .tkci-2960-landing .tkci-2960-r3-list {
        columns: 1 !important;
    }
    .tkci-2960-landing .tkci-2960-r3-blurb-text { font-size: 14px !important; }
    .tkci-2960-landing .tkci-2960-r3-h2 { font-size: 22px !important; }
}

/* -- FAQ section (blue gradient accordion, matches Cisco manufacturer page) -- */
.tkci-2960-landing .tkci-2960-r3-faq-wrap {
    padding: 32px 20px 40px !important;
    background: #ffffff !important;
}
.tkci-2960-landing .tkci-2960-r3-faq-box {
    background: linear-gradient(90deg, rgba(0,102,161,1) 0%, rgba(2,111,173,1) 21%, rgba(17,135,249,1) 89%) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    padding: 30px 0 0 !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}
.tkci-2960-landing .tkci-2960-r3-faq-heading {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    position: static !important;
    text-indent: 0 !important;
    white-space: normal !important;
    clip: auto !important;
    clip-path: none !important;
    transform: none !important;
    text-align: center !important;
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin: 0 0 20px !important;
    line-height: 1.3 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    text-transform: none !important;
}
.tkci-2960-landing .tkci-2960-r3-faq-item {
    border-top: 1px solid rgba(255,255,255,0.15) !important;
}
.tkci-2960-landing .tkci-2960-r3-faq-q {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    background: transparent !important;
    border: 0 !important;
    cursor: pointer !important;
    padding: 18px 24px !important;
    text-align: left !important;
    gap: 16px !important;
    font-family: Arial, Helvetica, sans-serif !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    box-shadow: none !important;
}
.tkci-2960-landing .tkci-2960-r3-faq-q:hover {
    background: rgba(255,255,255,0.06) !important;
}
.tkci-2960-landing .tkci-2960-r3-faq-plus {
    color: rgba(255,255,255,0.85) !important;
    font-size: 22px !important;
    font-weight: 300 !important;
    flex-shrink: 0 !important;
    width: 22px !important;
    text-align: center !important;
    display: inline-block !important;
}
.tkci-2960-landing .tkci-2960-r3-faq-a {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.35s ease !important;
}
.tkci-2960-landing .tkci-2960-r3-faq-item.is-open .tkci-2960-r3-faq-a {
    max-height: 800px !important;
}
.tkci-2960-landing .tkci-2960-r3-faq-a-inner {
    padding: 0 24px 20px 24px !important;
}
.tkci-2960-landing .tkci-2960-r3-faq-a-inner p {
    color: rgba(255,255,255,0.93) !important;
    font-size: 13.5px !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    font-family: Arial, Helvetica, sans-serif !important;
}
.tkci-2960-landing .tkci-2960-r3-faq-a-inner strong {
    color: #ffffff !important;
    font-weight: 700 !important;
}
.tkci-2960-landing .tkci-2960-r3-faq-cta {
    text-align: center !important;
    padding: 20px 24px 28px !important;
}
.tkci-2960-landing .tkci-2960-r3-faq-cta a {
    display: inline-block !important;
    background: rgba(255,255,255,0.95) !important;
    color: #0a4b8c !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 13px 34px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    font-family: Arial, Helvetica, sans-serif !important;
}
.tkci-2960-landing .tkci-2960-r3-faq-cta a:hover {
    background: #ffffff !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15) !important;
}
@media (max-width: 600px) {
    .tkci-2960-landing .tkci-2960-r3-faq-heading { font-size: 20px !important; }
    .tkci-2960-landing .tkci-2960-r3-faq-q { font-size: 14px !important; padding: 15px 18px !important; }
    .tkci-2960-landing .tkci-2960-r3-faq-a-inner { padding: 0 18px 16px 18px !important; }
    .tkci-2960-landing .tkci-2960-r3-faq-cta a { padding: 11px 26px !important; font-size: 14px !important; }
}

/* V2 FORK */
.tkci-2960-v2 .tkci-2960-v2-hero-video-frame { position: relative !important; padding-bottom: 56.25% !important; height: 0 !important; overflow: hidden !important; background: #0A1628 !important; border-radius: 8px !important; }
.tkci-2960-v2 .tkci-2960-v2-hero-video-frame iframe { position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; border: 0 !important; }
}
.tkci-2960-v2 .tkci-2960-v2-img-slot { margin: 24px auto !important; max-width: 800px !important; text-align: center !important; }
.tkci-2960-v2 .tkci-2960-v2-img-slot img { display: block !important; width: 100% !important; height: auto !important; border-radius: 8px !important; box-shadow: 0 4px 14px rgba(10, 22, 40, 0.08) !important; }
.tkci-2960-v2 .tkci-2960-v2-img-review { max-width: 100% !important; margin: 14px 0 0 !important; }
.tkci-2960-v2 .tkci-2960-v2-img-review img { border-radius: 6px !important; }
.tkci-2960-v2 .tkci-2960-v2-img-faq { max-width: 720px !important; padding: 0 24px !important; margin: 10px auto 20px !important; }
.tkci-2960-v2 .tkci-2960-v2-img-faq img { border-radius: 8px !important; box-shadow: 0 4px 14px rgba(0,0,0,0.25) !important; }

/* V2 FORK — scoped to body.tkci-2960-v2 */
.tkci-2960-v2 .tkci-2960-v2-hero-video-frame { position: relative !important; padding-bottom: 56.25% !important; height: 0 !important; overflow: hidden !important; background: #0A1628 !important; border-radius: 8px !important; }
.tkci-2960-v2 .tkci-2960-v2-hero-video-frame iframe { position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; border: 0 !important; }
}
.tkci-2960-v2 .tkci-2960-v2-img-slot { margin: 24px auto !important; max-width: 800px !important; text-align: center !important; }
.tkci-2960-v2 .tkci-2960-v2-img-slot img { display: block !important; width: 100% !important; height: auto !important; border-radius: 8px !important; box-shadow: 0 4px 14px rgba(10, 22, 40, 0.08) !important; }
.tkci-2960-v2 .tkci-2960-v2-img-review { max-width: 100% !important; margin: 14px 0 0 !important; }
.tkci-2960-v2 .tkci-2960-v2-img-review img { border-radius: 6px !important; }
.tkci-2960-v2 .tkci-2960-v2-img-faq { max-width: 720px !important; padding: 0 24px !important; margin: 10px auto 20px !important; }
.tkci-2960-v2 .tkci-2960-v2-img-faq img { border-radius: 8px !important; box-shadow: 0 4px 14px rgba(0,0,0,0.25) !important; }

/* === V2 hero-grid + image-slot hardening (v0.4.13) === */
.tkci-2960-v2-hero-grid > .tkci-2960-hero-inner,
.tkci-2960-v2-hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  background: #000;
}
.tkci-2960-v2-hero-media iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  border-radius: 16px;
}
@media (max-width: 700px) {
}

/* Image slots: rounded frame, drop-shadow, subtle inner border */
.tkci-2960-v2-img-slot {
  margin: 24px 0;
  text-align: center;
}
.tkci-2960-v2-img-slot img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #f4f6f8;
}
/* Slot D lives inside blue FAQ box — override border to work on dark bg */
.tkci-2960-r3-faq-box .tkci-2960-v2-img-slot img {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* === V2 img-slot: enforce visible dimensions even for placeholder-sized images (v0.4.14) === */
.tkci-2960-v2 .tkci-2960-v2-img-slot img {
  min-height: 200px !important;
  min-width: 100% !important;
  object-fit: cover !important;
  background: linear-gradient(135deg, #eef2f7 0%, #dae3ee 100%) !important;
}

/* === v0.4.16: force prose-cta slot visible + drop hero breakpoint === */
.tkci-2960-v2 .tkci-2960-v2-img-prose-cta {
  min-height: 220px !important;
  background: linear-gradient(135deg, #0066A1 0%, #1187F9 100%) !important;
  border-radius: 12px !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
  margin: 32px auto !important;
}
.tkci-2960-v2 .tkci-2960-v2-img-prose-cta img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.tkci-2960-v2 .tkci-2960-v2-img-prose-cta::after {
  content: "Ready for a quote? Call 201-934-3416";
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  padding: 24px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
/* Hero: drop mobile breakpoint further so 2-col holds on tighter containers */
@media (max-width: 700px) {
}
@media (min-width: 560px) {
}

/* v0.4.17 hero force 2-col */
}

/* === v0.4.18 FINAL: 2-col hero + smaller lifecycle === */
.tkci-2960-v2 .tkci-2960-v2-hero-grid,
body.tkci-2960-v2 .tkci-2960-v2-hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) !important;
  gap: 28px !important;
  align-items: start !important;
  width: 100% !important;
}
.tkci-2960-v2 .tkci-2960-v2-hero-text,
body.tkci-2960-v2 .tkci-2960-v2-hero-text { min-width: 0 !important; }
.tkci-2960-v2 .tkci-2960-v2-hero-video,
body.tkci-2960-v2 .tkci-2960-v2-hero-video { min-width: 0 !important; }
@media (max-width: 480px) {
  .tkci-2960-v2 .tkci-2960-v2-hero-grid,
  body.tkci-2960-v2 .tkci-2960-v2-hero-grid {
    grid-template-columns: 1fr !important;
  }
}
/* Lifecycle image: shrink + center */
.tkci-2960-v2 .tkci-2960-v2-img-lifecycle,
body.tkci-2960-v2 .tkci-2960-v2-img-lifecycle {
  max-width: 480px !important;
  margin: 32px auto !important;
}
.tkci-2960-v2 .tkci-2960-v2-img-lifecycle img,
body.tkci-2960-v2 .tkci-2960-v2-img-lifecycle img {
  width: 100% !important;
  height: auto !important;
  border-radius: 14px !important;
}

/* IMG-SLOT NEUTRALIZATION - remove any overlays, crops, or aspect-ratio hacks */
body.tkci-2960-v2 .tkci-2960-v2-img-slot,
body.tkci-2960-v2 .tkci-2960-v2-img-prose-cta,
body.tkci-2960-v2 .tkci-2960-v2-img-review,
body.tkci-2960-v2 .tkci-2960-v2-img-lifecycle,
body.tkci-2960-v2 .tkci-2960-v2-img-faq {
  position: static !important;
  padding: 0 !important;
  height: auto !important;
  overflow: visible !important;
  background: transparent !important;
  aspect-ratio: auto !important;
}
body.tkci-2960-v2 .tkci-2960-v2-img-slot::before,
body.tkci-2960-v2 .tkci-2960-v2-img-slot::after {
  content: none !important;
  display: none !important;
}
body.tkci-2960-v2 .tkci-2960-v2-img-slot img {
  position: static !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* REVIEWS-BOTTOM 2-COLUMN FORCE - neutralize any width overrides */
body.tkci-2960-v2 .tkci-2960-reviews-bottom-inner > div {
  display: grid !important;
}
body.tkci-2960-v2 .tkci-2960-reviews-bottom .tkci-2960-review-card {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
