/* Toshiba Silver Style - Auto-themed */
:root {
    --iboe-dark: #0a2113;
    --iboe-darker: #1e2427;
    --iboe-silver: #b7b9c8;
    --iboe-silver-light: #e0dcec;
    --iboe-silver-dark: #98a69d;
    --iboe-accent: #7e9eaa;
    --iboe-accent-hover: #99aebb;
    --iboe-white: #ffffff;
    --iboe-bg: #FAFAFA;
    --iboe-bg-alt: #ECEFF1;
    --iboe-text: #1a2314;
    --iboe-text-muted: #717470;
    --iboe-border: #d6d1d2;
    --iboe-success: #0aae99;
    --iboe-danger: #de3635;
    --iboe-shadow-sm: 0 2px 8px rgba(46,52,49,0.08);
    --iboe-shadow-md: 0 4px 16px rgba(47,46,56,0.12);
    --iboe-shadow-lg: 0 8px 32px rgba(48,56,48,0.16);
    --iboe-radius-sm: 3px;
    --iboe-radius-md: 9px;
    --iboe-radius-lg: 17px;
    --iboe-transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--iboe-text);
    background: var(--iboe-bg);
    -webkit-font-smoothing: antialiased;
}

.iboe-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 21px;
}

/* Price Bar */
.iboe-price-bar {
    background: linear-gradient(135deg, var(--iboe-darker) 0%, var(--iboe-dark) 100%);
    padding: 14px 0;
    border-bottom: 2px solid rgba(196,191,193,0.15);
}

.iboe-price-bar-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.iboe-price-item {
    display: flex;
    align-items: center;
    gap: 9px;
}

.iboe-metal-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: var(--iboe-silver-dark);
    text-transform: uppercase;
}

.iboe-metal-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--iboe-silver);
}

.iboe-metal-change {
    font-size: 13px;
    font-weight: 600;
    padding: 1px 9px;
    border-radius: 5px;
}

.iboe-metal-change.positive {
    color: var(--iboe-success);
    background: rgba(10,177,141,0.15);
}

.iboe-metal-change.negative {
    color: var(--iboe-danger);
    background: rgba(220,51,49,0.15);
}

/* Header */
.iboe-header {
    background: var(--iboe-white);
    border-bottom: 1px solid var(--iboe-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--iboe-shadow-sm);
}

.iboe-header-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 13px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 27px;
}

.iboe-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--iboe-dark);
}

.iboe-logo-icon {
    width: 38px;
    height: 38px;
    color: var(--iboe-accent);
}

.iboe-logo-name {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.6px;
}

.iboe-logo-name span {
    font-weight: 400;
    color: var(--iboe-text-muted);
}

.iboe-navigation {
    display: flex;
    gap: 5px;
}

.iboe-nav-item {
    padding: 10px 21px;
    color: var(--iboe-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--iboe-radius-sm);
    transition: var(--iboe-transition);
}

.iboe-nav-item:hover,
.iboe-nav-item.active {
    background: var(--iboe-bg-alt);
    color: var(--iboe-accent);
}

.iboe-header-btn {
    padding: 11px 25px;
    background: var(--iboe-accent);
    color: var(--iboe-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--iboe-radius-sm);
    transition: var(--iboe-transition);
}

.iboe-header-btn:hover {
    background: var(--iboe-accent-hover);
    transform: translateY(-1px);
}

.iboe-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.iboe-burger span {
    width: 27px;
    height: 2px;
    background: var(--iboe-dark);
    transition: var(--iboe-transition);
}

.iboe-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.iboe-burger.active span:nth-child(2) {
    opacity: 0;
}

.iboe-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.iboe-mobile-menu {
    display: none;
    flex-direction: column;
    padding: 13px 24px;
    border-top: 2px solid var(--iboe-border);
    background: var(--iboe-white);
}

.iboe-mobile-menu.active {
    display: flex;
}

.iboe-mobile-menu a {
    padding: 12px 0;
    color: var(--iboe-text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--iboe-border);
}

.iboe-mobile-menu a:last-child {
    border-bottom: none;
}

/* Hero */
.iboe-hero-block {
    background: linear-gradient(135deg, var(--iboe-dark) 0%, var(--iboe-darker) 50%, #19272f 100%);
    padding: 83px 23px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.iboe-hero-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(199,186,184,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(10,136,234,0.06) 0%, transparent 50%);
}

.iboe-hero-content {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.iboe-hero-label {
    display: inline-block;
    padding: 5px 20px;
    background: rgba(185,190,191,0.12);
    border: 1px solid rgba(186,185,198,0.25);
    border-radius: 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--iboe-silver);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 23px;
}

.iboe-hero-heading {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: 46px;
    font-weight: 700;
    color: var(--iboe-white);
    line-height: 1.2;
    margin-bottom: 17px;
}

.iboe-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 35px;
}

.iboe-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.iboe-btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 31px;
    background: var(--iboe-accent);
    color: var(--iboe-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--iboe-radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--iboe-transition);
}

.iboe-btn-main:hover {
    background: var(--iboe-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10,129,232,0.35);
}

.iboe-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 26px;
    background: transparent;
    color: var(--iboe-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--iboe-radius-sm);
    transition: var(--iboe-transition);
}

.iboe-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.iboe-btn-full {
    width: 100%;
}

.iboe-btn-text {
    color: var(--iboe-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 13px;
    transition: var(--iboe-transition);
}

.iboe-btn-text:hover {
    color: var(--iboe-accent-hover);
    text-decoration: underline;
}

/* Layout */
.iboe-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 43px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 61px 27px;
}

/* Sidebar */
.iboe-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.iboe-sidebar-widget {
    background: var(--iboe-white);
    border: 1px solid var(--iboe-border);
    border-radius: var(--iboe-radius-md);
    padding: 21px;
    margin-bottom: 24px;
}

.iboe-sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--iboe-dark);
    margin-bottom: 14px;
    padding-bottom: 13px;
    border-bottom: 3px solid var(--iboe-border);
}

.iboe-sidebar-nav {
    list-style: none;
}

.iboe-sidebar-nav li {
    margin-bottom: 7px;
}

.iboe-sidebar-nav a {
    display: block;
    padding: 12px 11px;
    color: var(--iboe-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--iboe-radius-sm);
    transition: var(--iboe-transition);
    border-left: 3px solid transparent;
}

.iboe-sidebar-nav a:hover {
    background: var(--iboe-bg-alt);
    color: var(--iboe-accent);
    border-left-color: var(--iboe-accent);
}

.iboe-sidebar-cta {
    background: linear-gradient(135deg, var(--iboe-dark) 0%, var(--iboe-darker) 100%);
    border-radius: var(--iboe-radius-md);
    padding: 22px;
    text-align: center;
}

.iboe-cta-badge {
    display: inline-block;
    padding: 7px 17px;
    background: rgba(10,134,222,0.2);
    color: var(--iboe-accent);
    font-size: 12px;
    font-weight: 700;
    border-radius: 22px;
    margin-bottom: 13px;
}

.iboe-cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin-bottom: 21px;
    line-height: 1.6;
}

/* Content */
.iboe-content {
    min-width: 0;
}

.iboe-section {
    margin-bottom: 48px;
}

.iboe-content h2 {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--iboe-dark);
    margin-bottom: 23px;
    padding-bottom: 13px;
    border-bottom: 4px solid var(--iboe-silver);
}

.iboe-content h3 {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--iboe-dark);
    margin: 32px 0 19px;
}

.iboe-content p {
    margin-bottom: 16px;
    color: var(--iboe-text);
    line-height: 1.8;
}

.iboe-list {
    margin: 21px 0 33px 27px;
}

.iboe-list li {
    margin-bottom: 14px;
    line-height: 1.7;
    position: relative;
}

.iboe-list li::marker {
    color: var(--iboe-accent);
}

/* Image Block */
.iboe-image-block {
    margin: 37px 0;
    border-radius: var(--iboe-radius-md);
    overflow: hidden;
    border: 1px solid var(--iboe-border);
    box-shadow: var(--iboe-shadow-md);
}

.iboe-article-img {
    width: 100%;
    height: auto;
    display: block;
}

.iboe-image-block figcaption {
    padding: 17px 18px;
    background: var(--iboe-bg-alt);
    font-size: 14px;
    color: var(--iboe-text-muted);
    font-style: italic;
}

/* Feature Grid */
.iboe-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 27px;
    margin: 39px 0;
}

.iboe-feature-item {
    background: var(--iboe-white);
    border: 1px solid var(--iboe-border);
    border-radius: var(--iboe-radius-md);
    padding: 25px;
    transition: var(--iboe-transition);
}

.iboe-feature-item:hover {
    border-color: var(--iboe-silver);
    box-shadow: var(--iboe-shadow-md);
    transform: translateY(-4px);
}

.iboe-feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--iboe-bg-alt) 0%, var(--iboe-silver-light) 100%);
    border-radius: var(--iboe-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 19px;
}

.iboe-feature-icon svg {
    width: 29px;
    height: 26px;
    color: var(--iboe-accent);
}

.iboe-feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--iboe-dark);
    margin: 0 0 7px;
    font-family: 'Roboto', sans-serif;
}

.iboe-feature-item p {
    font-size: 14px;
    color: var(--iboe-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Providers List */
.iboe-providers-list {
    display: flex;
    flex-direction: column;
    gap: 27px;
    margin-top: 30px;
}

.iboe-provider-card {
    background: var(--iboe-white);
    border: 1px solid var(--iboe-border);
    border-radius: var(--iboe-radius-md);
    padding: 31px;
    position: relative;
    transition: var(--iboe-transition);
}

.iboe-provider-card:hover {
    box-shadow: var(--iboe-shadow-lg);
    border-color: var(--iboe-silver);
}

.iboe-provider-card.featured {
    border-color: var(--iboe-accent);
    border-width: 1px;
}

.iboe-provider-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 6px 19px;
    background: var(--iboe-accent);
    color: var(--iboe-white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 21px;
}

.iboe-provider-header {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-bottom: 19px;
}

.iboe-provider-rank {
    width: 42px;
    height: 40px;
    background: var(--iboe-silver-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: var(--iboe-dark);
}

.iboe-provider-logo {
    width: 100px;
    height: 50px;
    object-fit: contain;
}

.iboe-provider-info {
    flex: 1;
}

.iboe-provider-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--iboe-dark);
    margin: 0 0 5px;
}

.iboe-provider-tagline {
    font-size: 13px;
    color: var(--iboe-text-muted);
    margin: 0;
}

.iboe-provider-stats {
    display: flex;
    gap: 34px;
    padding: 15px 0;
    border-top: 1px solid var(--iboe-border);
    border-bottom: 1px solid var(--iboe-border);
    margin-bottom: 16px;
}

.iboe-stat {
    display: flex;
    flex-direction: column;
}

.iboe-stat-label {
    font-size: 12px;
    color: var(--iboe-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.iboe-stat-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--iboe-dark);
}

.iboe-provider-desc {
    font-size: 15px;
    color: var(--iboe-text);
    margin-bottom: 17px;
    line-height: 1.7;
}

.iboe-provider-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* FAQ Section */
.iboe-faq-section {
    margin-top: 63px;
    padding-top: 38px;
    border-top: 4px solid var(--iboe-border);
}

.iboe-faq-list {
    margin-top: 33px;
}

.iboe-faq-item {
    background: var(--iboe-white);
    border: 1px solid var(--iboe-border);
    border-radius: var(--iboe-radius-md);
    margin-bottom: 14px;
    overflow: hidden;
    transition: var(--iboe-transition);
}

.iboe-faq-item:hover {
    border-color: var(--iboe-silver);
}

.iboe-faq-item.active {
    border-color: var(--iboe-accent);
}

.iboe-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.iboe-faq-trigger span {
    font-size: 17px;
    font-weight: 600;
    color: var(--iboe-dark);
}

.iboe-faq-arrow {
    width: 24px;
    height: 24px;
    color: var(--iboe-text-muted);
    transition: var(--iboe-transition);
    flex-shrink: 0;
}

.iboe-faq-item.active .iboe-faq-arrow {
    transform: rotate(180deg);
    color: var(--iboe-accent);
}

.iboe-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.iboe-faq-item.active .iboe-faq-content {
    max-height: 500px;
}

.iboe-faq-content p {
    padding: 0 23px 22px;
    color: var(--iboe-text);
    line-height: 1.7;
}

/* Footer */
.iboe-footer {
    background: var(--iboe-dark);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 77px;
}

.iboe-footer-main {
    max-width: 1500px;
    margin: 0 auto;
    padding: 63px 22px 41px;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 43px;
}

.iboe-footer-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: var(--iboe-white);
    margin-bottom: 18px;
}

.iboe-footer-logo .iboe-logo-icon {
    width: 32px;
    height: 32px;
}

.iboe-footer-logo span {
    font-size: 18px;
    font-weight: 700;
}

.iboe-footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.iboe-footer-links h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--iboe-white);
    margin-bottom: 21px;
}

.iboe-footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    padding: 7px 0;
    transition: var(--iboe-transition);
}

.iboe-footer-links a:hover {
    color: var(--iboe-accent);
    padding-left: 5px;
}

.iboe-footer-disclaimer {
    max-width: 1500px;
    margin: 0 auto;
    padding: 27px 22px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.iboe-footer-disclaimer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.iboe-footer-bottom {
    text-align: center;
    padding: 23px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.iboe-footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Exit Popup */
.iboe-exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.iboe-exit-popup.active {
    display: flex;
}

.iboe-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.iboe-popup-content {
    position: relative;
    background: var(--iboe-white);
    padding: 48px 43px;
    border-radius: var(--iboe-radius-lg);
    max-width: 420px;
    text-align: center;
    box-shadow: var(--iboe-shadow-lg);
    animation: tsPopupIn 0.3s ease;
}

@keyframes tsPopupIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.iboe-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: var(--iboe-bg-alt);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: var(--iboe-text-muted);
    transition: var(--iboe-transition);
}

.iboe-popup-close:hover {
    background: var(--iboe-border);
}

.iboe-popup-content h3 {
    font-family: 'Source Serif Pro', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--iboe-dark);
    margin-bottom: 12px;
}

.iboe-popup-content p {
    font-size: 15px;
    color: var(--iboe-text-muted);
    margin-bottom: 27px;
    line-height: 1.6;
}

.iboe-popup-note {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    color: var(--iboe-text-muted);
}

/* Review Page Specific */
.iboe-review-page .iboe-container {
    max-width: 900px;
    padding: 60px 27px;
}

.iboe-review-header {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 33px;
    border-bottom: 3px solid var(--iboe-border);
    margin-bottom: 31px;
}

.iboe-review-logo {
    width: 140px;
    height: 70px;
    object-fit: contain;
}

.iboe-review-meta h1 {
    font-family: 'Source Serif Pro', serif;
    font-size: 34px;
    margin-bottom: 11px;
}

.iboe-review-tagline {
    color: var(--iboe-text-muted);
    margin-bottom: 10px;
}

.iboe-review-rating {
    display: flex;
    align-items: center;
    gap: 13px;
}

.iboe-stars {
    color: #f1c30a;
    font-size: 20px;
}

.iboe-score {
    font-weight: 700;
    color: var(--iboe-dark);
}

.iboe-bbb {
    padding: 3px 14px;
    background: var(--iboe-success);
    color: white;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
}

.iboe-review-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 19px;
    margin-bottom: 38px;
}

.iboe-review-stat {
    background: var(--iboe-bg-alt);
    padding: 21px;
    border-radius: var(--iboe-radius-md);
    text-align: center;
}

.iboe-stat-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 7px;
}

.iboe-stat-name {
    font-size: 15px;
    color: var(--iboe-text-muted);
    display: block;
}

.iboe-stat-val {
    font-size: 20px;
    font-weight: 700;
    color: var(--iboe-dark);
}

.iboe-review-body h2 {
    font-family: 'Source Serif Pro', serif;
    font-size: 26px;
    margin: 43px 0 16px;
    padding-bottom: 13px;
    border-bottom: 3px solid var(--iboe-border);
}

.iboe-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px;
    margin: 32px 0;
}

.iboe-pros, .iboe-cons {
    padding: 21px;
    border-radius: var(--iboe-radius-md);
}

.iboe-pros {
    background: rgba(10,186,146,0.08);
    border: 1px solid rgba(10,180,153,0.2);
}

.iboe-cons {
    background: rgba(210,54,46,0.08);
    border: 1px solid rgba(211,48,53,0.2);
}

.iboe-pros h3, .iboe-cons h3 {
    font-size: 18px;
    margin: 0 0 17px;
    font-family: 'Roboto', sans-serif;
}

.iboe-pros h3 { color: var(--iboe-success); }
.iboe-cons h3 { color: var(--iboe-danger); }

.iboe-pros ul, .iboe-cons ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.iboe-pros li, .iboe-cons li {
    padding: 11px 0;
    padding-left: 23px;
    position: relative;
}

.iboe-pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--iboe-success);
    font-weight: 700;
}

.iboe-cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--iboe-danger);
    font-weight: 700;
}

.iboe-fees-table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
}

.iboe-fees-table th, .iboe-fees-table td {
    padding: 11px 18px;
    text-align: left;
    border-bottom: 1px solid var(--iboe-border);
}

.iboe-fees-table th {
    background: var(--iboe-dark);
    color: var(--iboe-white);
    font-weight: 600;
}

.iboe-fees-table tr:hover td {
    background: var(--iboe-bg-alt);
}

.iboe-review-cta {
    background: linear-gradient(135deg, var(--iboe-dark) 0%, var(--iboe-darker) 100%);
    padding: 38px;
    border-radius: var(--iboe-radius-lg);
    text-align: center;
    margin: 41px 0;
}

.iboe-review-cta h3 {
    color: var(--iboe-white);
    font-size: 24px;
    margin: 0 0 9px;
    border: none;
    padding: 0;
}

.iboe-review-cta p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 26px;
}

.iboe-other-providers {
    margin-top: 57px;
    padding-top: 40px;
    border-top: 3px solid var(--iboe-border);
}

.iboe-other-providers h3 {
    font-family: 'Source Serif Pro', serif;
    font-size: 24px;
    margin-bottom: 25px;
    padding: 0;
    border: none;
}

.iboe-other-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 23px;
}

.iboe-other-card {
    background: var(--iboe-white);
    border: 1px solid var(--iboe-border);
    border-radius: var(--iboe-radius-md);
    padding: 22px;
    text-align: center;
    transition: var(--iboe-transition);
}

.iboe-other-card:hover {
    box-shadow: var(--iboe-shadow-md);
    border-color: var(--iboe-silver);
}

.iboe-other-card img {
    width: 80px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 15px;
}

.iboe-other-card h4 {
    font-size: 15px;
    margin-bottom: 7px;
}

.iboe-other-card p {
    font-size: 16px;
    color: var(--iboe-text-muted);
    margin-bottom: 11px;
}

.iboe-other-card a {
    color: var(--iboe-accent);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

/* Static Page */
.iboe-static-page .iboe-container {
    max-width: 800px;
    padding: 60px 27px;
}

.iboe-article h1 {
    font-family: 'Source Serif Pro', serif;
    font-size: 38px;
    margin-bottom: 25px;
}

.iboe-article h2 {
    font-size: 29px;
    margin-top: 39px;
}

.iboe-article h3 {
    font-size: 22px;
}

.iboe-lead {
    font-size: 18px;
    color: var(--iboe-text-muted);
    margin-bottom: 24px;
}

.iboe-intro {
    padding: 27px;
    background: var(--iboe-bg-alt);
    border-left: 4px solid var(--iboe-accent);
    border-radius: var(--iboe-radius-sm);
    margin-bottom: 41px;
}

/* Contact Page */
.iboe-contact-section h1 {
    font-family: 'Source Serif Pro', serif;
    font-size: 38px;
    margin-bottom: 15px;
}

.iboe-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 52px;
    margin-top: 37px;
}

.iboe-contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.iboe-contact-item {
    display: flex;
    gap: 19px;
    align-items: flex-start;
}

.iboe-contact-icon {
    width: 48px;
    height: 48px;
    background: var(--iboe-bg-alt);
    border-radius: var(--iboe-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.iboe-contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--iboe-accent);
}

.iboe-contact-details h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 3px;
    font-family: 'Roboto', sans-serif;
}

.iboe-contact-details p {
    color: var(--iboe-text-muted);
    margin: 0;
}

.iboe-contact-form-wrap {
    background: var(--iboe-white);
    padding: 36px;
    border-radius: var(--iboe-radius-md);
    border: 2px solid var(--iboe-border);
}

.iboe-form-group {
    margin-bottom: 18px;
}

.iboe-form-label {
    display: block;
    font-weight: 600;
    color: var(--iboe-dark);
    margin-bottom: 9px;
    font-size: 17px;
}

.iboe-form-input, .iboe-form-textarea, .iboe-form-select {
    width: 100%;
    padding: 13px 18px;
    border: 1px solid var(--iboe-border);
    border-radius: var(--iboe-radius-sm);
    font-family: inherit;
    font-size: 15px;
    transition: var(--iboe-transition);
    background: var(--iboe-white);
}

.iboe-form-input:focus, .iboe-form-textarea:focus, .iboe-form-select:focus {
    outline: none;
    border-color: var(--iboe-accent);
    box-shadow: 0 0 0 3px rgba(10,137,222,0.1);
}

.iboe-form-textarea {
    min-height: 130px;
    resize: vertical;
}

.iboe-form-success {
    display: none;
    padding: 21px;
    background: rgba(10,183,151,0.1);
    border: 1px solid rgba(10,190,142,0.3);
    border-radius: var(--iboe-radius-sm);
    color: var(--iboe-success);
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .iboe-layout {
        grid-template-columns: 1fr;
    }

    .iboe-sidebar {
        position: static;
        display: none;
    }

    .iboe-footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .iboe-header { position: relative !important; }
    .iboe-navigation, .iboe-header-btn {
        display: none;
    }

    .iboe-burger {
        display: flex;
    }

    .iboe-hero-heading {
        font-size: 32px;
    }

    .iboe-hero-desc {
        font-size: 16px;
    }

    .iboe-hero-actions {
        flex-direction: column;
    }

    .iboe-feature-grid {
        grid-template-columns: 1fr;
    }

    .iboe-provider-header {
        flex-wrap: wrap;
    }

    .iboe-provider-stats {
        flex-wrap: wrap;
        gap: 19px;
    }

    .iboe-stat {
        min-width: calc(50% - 16px);
    }

    .iboe-review-header {
        flex-direction: column;
        text-align: center;
    }

    .iboe-review-rating {
        justify-content: center;
    }

    .iboe-review-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .iboe-pros-cons {
        grid-template-columns: 1fr;
    }

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

    .iboe-contact-grid {
        grid-template-columns: 1fr;
    }

    .iboe-footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .iboe-footer-logo {
        justify-content: center;
    }

    .iboe-price-bar-inner {
        gap: 17px;
    }

    .iboe-price-item {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .iboe-hero-block {
        padding: 62px 13px;
    }

    .iboe-hero-heading {
        font-size: 28px;
    }

    .iboe-content h2 {
        font-size: 26px;
    }

    .iboe-provider-card {
        padding: 18px;
    }

    .iboe-provider-buttons {
        flex-direction: column;
    }

    .iboe-other-grid {
        grid-template-columns: 1fr;
    }

    .iboe-popup-content {
        margin: 21px;
        padding: 35px 23px;
    }
}

/* ========================================
   Companies Comparison Table - Silver Tech Style
   ======================================== */
.iboe-comparison-section {
    padding: 85px 0;
    background: var(--iboe-silver-light);
}

.iboe-comparison-header {
    text-align: center;
    margin-bottom: 47px;
}

.iboe-comparison-chip {
    display: inline-block;
    padding: 6px 19px;
    background: var(--iboe-accent);
    color: var(--iboe-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 5px;
    margin-bottom: 15px;
}

.iboe-comparison-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--iboe-dark);
    margin-bottom: 9px;
}

.iboe-comparison-subtitle {
    font-size: 16px;
    color: var(--iboe-gray-600);
    max-width: 620px;
    margin: 0 auto;
}

.iboe-comparison-table {
    width: 100%;
    background: var(--iboe-white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 23px rgba(0,0,0,0.08);
}

.iboe-comparison-table thead {
    background: linear-gradient(135deg, var(--iboe-dark) 0%, var(--iboe-darker) 100%);
}

.iboe-comparison-table th {
    padding: 19px 24px;
    text-align: left;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--iboe-silver);
}

.iboe-comparison-table td {
    padding: 23px 20px;
    border-bottom: 2px solid var(--iboe-silver-light);
    font-size: 14px;
    color: var(--iboe-dark);
}

.iboe-comparison-table tbody tr:hover {
    background: rgba(0,0,0,0.02);
}

.iboe-company-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.iboe-company-icon {
    width: 52px;
    height: 50px;
    background: var(--iboe-silver-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iboe-company-icon img {
    max-width: 34px;
    max-height: 34px;
}

.iboe-company-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--iboe-dark);
}

.iboe-company-text span {
    font-size: 12px;
    color: var(--iboe-gray-500);
}

.iboe-rating-tech {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 11px;
    background: var(--iboe-silver-light);
    border-radius: 6px;
}

.iboe-rating-tech strong {
    font-size: 19px;
    color: var(--iboe-accent);
}

.iboe-feature-chip {
    display: inline-block;
    padding: 5px 13px;
    background: var(--iboe-accent);
    color: var(--iboe-white);
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
}

.iboe-btn-tech {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 24px;
    background: var(--iboe-accent);
    color: var(--iboe-white);
    text-decoration: none;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.iboe-btn-tech:hover {
    background: var(--iboe-accent-hover);
    transform: translateY(-2px);
}

.iboe-comparison-cards { display: none; }

.iboe-company-card {
    background: var(--iboe-white);
    border-radius: 15px;
    padding: 23px;
    margin-bottom: 18px;
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.iboe-card-top {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-bottom: 18px;
}

.iboe-card-icon {
    width: 61px;
    height: 60px;
    background: var(--iboe-silver-light);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iboe-card-meta h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--iboe-dark);
}

.iboe-card-data {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-bottom: 20px;
}

.iboe-card-datum {
    padding: 17px;
    background: var(--iboe-silver-light);
    border-radius: 6px;
}

.iboe-card-datum-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--iboe-gray-500);
    margin-bottom: 3px;
}

.iboe-card-datum-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--iboe-dark);
}

.iboe-card-btn {
    display: block;
    text-align: center;
    padding: 11px;
    background: var(--iboe-accent);
    color: var(--iboe-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background 0.2s ease;
}

.iboe-card-btn:hover {
    background: var(--iboe-accent-hover);
}

@media (max-width: 900px) {
    .iboe-comparison-table { display: none; }
    .iboe-comparison-cards { display: block; }
    .iboe-comparison-title { font-size: 30px; }
}

@media (max-width: 480px) {
    .iboe-comparison-section { padding: 58px 0; }
    .iboe-card-data { grid-template-columns: 1fr; }
}


/* Force Mobile Table Cards */
@media screen and (max-width: 768px) {
    .iboe-companies-section .iboe-companies-table-wrapper {
        overflow: visible !important;
        background: transparent !important;
    }

    .iboe-companies-section table.iboe-companies-table {
        display: block !important;
        width: 100% !important;
    }

    .iboe-companies-section .iboe-companies-table thead {
        display: none !important;
    }

    .iboe-companies-section .iboe-companies-table tbody,
    .iboe-companies-section .iboe-companies-table tr {
        display: block !important;
        width: 100% !important;
    }

    .iboe-companies-section .iboe-companies-table tbody tr.iboe-company-row {
        background: #fff !important;
        margin-bottom: 22px !important;
        border-radius: 13px !important;
        box-shadow: 0 4px 27px rgba(97,29,39,0.1) !important;
        padding: 18px !important;
        border: 2px solid rgba(98,23,47,0.08);
    }

    .iboe-companies-section .iboe-companies-table td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px 0 !important;
        border: none !important;
        border-bottom: 1px solid #f5f5f5 !important;
    }

    .iboe-companies-section .iboe-companies-table td:last-child {
        border-bottom: none !important;
    }

    .iboe-companies-section .iboe-companies-table td::before {
        content: attr(data-label) !important;
        font-weight: 700 !important;
        color: #5d1532 !important;
        flex-shrink: 0 !important;
        margin-right: 17px !important;
        font-size: 0.85rem !important;
    }

    .iboe-companies-section .iboe-td-company {
        flex-direction: column !important;
        text-align: center !important;
        padding-bottom: 13px !important;
        border-bottom: 2px solid #e7ecd1 !important;
    }

    .iboe-companies-section .iboe-td-company::before {
        display: none !important;
    }

    .iboe-companies-section .iboe-td-rank {
        justify-content: center !important;
        padding-top: 0 !important;
        border-bottom: none !important;
    }

    .iboe-companies-section .iboe-td-rank::before {
        display: none !important;
    }

    .iboe-companies-section .iboe-td-action {
        flex-direction: column !important;
        padding-top: 19px !important;
        border-top: 1px solid #f2e8cb !important;
        border-bottom: none !important;
    }

    .iboe-companies-section .iboe-td-action::before {
        display: none !important;
    }

    .iboe-companies-section .iboe-td-action .iboe-btn {
        width: 100% !important;
        text-align: center !important;
        padding: 15px 27px !important;
        font-size: 1rem !important;
    }
}

/* Company Logo Styles */
.iboe-company-logo {
    width: auto !important;
    height: 45px !important;
    max-width: 140px !important;
    max-height: 45px !important;
    object-fit: contain !important;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .iboe-company-logo {
        display: block !important;
        margin: 0 auto 13px auto !important;
    }

    .iboe-companies-section .iboe-td-company .iboe-company-info {
        text-align: center;
    }
}


/* Hamburger Menu Styles */
.iboe-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 11px;
}

.iboe-menu-line {
    width: 23px;
    height: 3px;
    background: var(--iboe-text, #263549);
    border-radius: 1px;
    transition: 0.3s;
}

.iboe-menu-toggle.active .iboe-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.iboe-menu-toggle.active .iboe-menu-line:nth-child(2) {
    opacity: 0;
}

.iboe-menu-toggle.active .iboe-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .iboe-menu-toggle {
        display: flex;
    }
}


/* Header Container Fix */
.iboe-header-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 18px 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.iboe-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* Navigation Responsive Fix */
@media (max-width: 768px) {
    .iboe-nav {
        display: none !important;
    }

    .iboe-menu-toggle {
        display: flex !important;
    }
}


/* Mobile Navigation Hidden by Default */
.iboe-mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 17px 27px;
    border-top: 1px solid #eee;
}

.iboe-mobile-nav.active {
    display: flex;
}

.iboe-mobile-link {
    padding: 14px 0;
    color: var(--iboe-text, #303244);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.iboe-mobile-link:last-child {
    border-bottom: none;
}

.iboe-mobile-link:hover {
    color: var(--iboe-accent, #e60a21);
}


/* SVG Logo & Mobile Fixes */
.iboe-logo-svg {
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

.iboe-logo-text {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .iboe-logo-svg {
        width: 28px;
        height: 28px;
    }
}

/* Company logos 50% width on mobile portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .iboe-company-logo {
        width: 50vw !important;
        max-width: 50vw !important;
        height: auto !important;
        max-height: none !important;
    }
}

/* Center company logos on mobile */
@media screen and (max-width: 768px) {
    .iboe-company-logo {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .iboe-company-info {
        text-align: center !important;
    }

    .iboe-company-name {
        text-align: center !important;
    }

    .iboe-company-badge {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}


/* Max width 1400px for desktop */
.iboe-wrapper, .iboe-content, .iboe-hero-inner, .iboe-companies-container, 
.iboe-article, .iboe-container, .iboe-footer-inner, .iboe-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center buttons in company cards */
.iboe-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.iboe-td-action {
    text-align: center !important;
}
.iboe-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 13px !important;
}

/* Desktop table full width */
@media (min-width: 769px) {
  .iboe-companies-table { width: 100% !important; table-layout: auto !important; }
  .iboe-companies-table .iboe-company-logo { max-width: 200px !important; height: auto !important; max-height: 70px !important; min-height: 50px !important; }
  .iboe-companies-table td, .iboe-companies-table th { padding: 18px 17px !important; }
  .iboe-companies-section { max-width: 1500px !important; margin: 0 auto !important; }
  .iboe-article { max-width: 1100px !important; margin: 0 auto !important; }
}
