/* AMD Timeless Style - Auto-themed */
:root {
    --im-primary: #0C200E;
    --im-primary-dark: #0C200E;
    --im-primary-light: #354c34;
    --im-accent: #28bb55;
    --im-gold: #1fca64;
    --im-gold-light: #8d85da;
    --im-gold-dark: #575aa4;
    --im-blue: #0a6491;
    --im-blue-light: #0a7ed3;
    --im-bg: #FAFAFE;
    --im-bg-light: #F0F0FA;
    --im-text: #0C200E;
    --im-text-light: #24c366;
    --im-border: #ccc8f5;
    --im-shadow: 0 4px 12px rgba(0,0,0,0.1);
    --im-shadow-hover: rgba(10,100,154,0.2);
    --im-shadow-gold: rgba(29,197,87,0.3);
    --im-success: #2bad44;
    --im-danger: #d63d4a;
    --im-warning: #f5c50a;
}

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

body {
    font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    color: var(--im-text);
    background: var(--im-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(10,97,155,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(31,194,88,0.02) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    background-attachment: fixed;
    font-size: 18px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(10,109,156,0.008) 8px, rgba(10,100,148,0.008) 16px);
    pointer-events: none;
    z-index: 0;
    animation: im-pattern-move 40s linear infinite;
}

@keyframes im-pattern-move {
    0% { transform: translateY(0); }
    100% { transform: translateY(16px); }
}

body > * {
    position: relative;
    z-index: 1;
}

.im-container {
    max-width:100%;
    margin: 0 auto;
    padding: 0 33px;
}

/* Alert Banner Component */
.im-alert-banner {
    background: linear-gradient(135deg, var(--im-primary) 0%, var(--im-primary-light) 100%);
    color: #ffffff;
    padding: 21px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10,102,157,0.3);
}

.im-alert-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: im-alert-shine 3s infinite;
}

.im-alert-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

@keyframes im-alert-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.im-alert-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
    font-weight: 700;
    font-size: 16px;
}

.im-alert-icon {
    font-size: 20px;
    animation: im-alert-pulse 2s ease-in-out infinite;
}

@keyframes im-alert-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.im-alert-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 17px;
    transition: all 0.3s;
}

.im-alert-close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transition: width 0.3s, height 0.3s;
}

.im-alert-close:hover::before {
    width: 40px;
    height: 40px;
}

.im-alert-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Price Ticker */
.im-ticker {
    background: linear-gradient(135deg, #181e16 0%, #352825 50%, #191121 100%);
    color: #ffffff;
    padding: 25px 0;
    border-bottom: 2px solid var(--im-primary);
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

.im-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--im-gold), transparent);
    animation: im-ticker-line 4.5s ease-in-out infinite;
}

@keyframes im-ticker-line {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.im-ticker-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 47px;
    flex-wrap: wrap;
    padding: 0 29px;
}

.im-ticker-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 19px;
    padding: 8px 19px;
    border-radius: 13px;
    transition: all 0.35s;
    position: relative;
}

.im-ticker-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(10,95,153,0.2) 0%, transparent 70%);
    border-radius: 9px;
    opacity: 0;
    transition: opacity 0.35s;
}

.im-ticker-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(10,105,146,0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.45s, height 0.45s;
    z-index: -1;
}

.im-ticker-item:hover::before {
    opacity: 1;
}

.im-ticker-item:hover::after {
    width: 160px;
    height: 160px;
}

.im-ticker-item:hover {
    transform: translateY(-3px) scale(1.06);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 5px 20px rgba(10,98,147,0.3), 0 0 30px rgba(10,108,156,0.2);
}

.im-ticker-metal {
    font-weight: 800;
    color: var(--im-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.im-ticker-price {
    font-weight: 900;
    font-size: 17px;
}

.im-ticker-change {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
}

.im-ticker-change--up {
    color: var(--im-success);
}

.im-ticker-change--down {
    color: var(--im-danger);
}

.im-ticker-separator {
    width: 2px;
    height: 32px;
    background: rgba(255, 255, 255, 0.25);
    position: relative;
}

.im-ticker-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--im-primary), transparent);
    transition: height 0.6s;
    animation: im-separator-glow 3.5s ease-in-out infinite;
}

@keyframes im-separator-glow {
    0%, 100% { height: 0; opacity: 0; }
    50% { height: 100%; opacity: 1; }
}

/* Header */
.im-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.96) 100%);
    border-bottom: 3px solid var(--im-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(31px) saturate(180%);
    box-shadow: 
        0 6px 34px rgba(10,101,158,0.1),
        inset 0 -1px 0 rgba(10,108,150,0.15);
    position: relative;
}

.im-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--im-primary), transparent);
    animation: im-header-line 4s ease-in-out infinite;
}

@keyframes im-header-line {
    0%, 100% { opacity: 0.65; }
    50% { opacity: 1; }
}

.im-header-container {
    max-width:100%;
    margin: 0 auto;
    padding: 26px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.im-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--im-primary);
    font-weight: 900;
    font-size: 26px;
    letter-spacing: -0.4px;
}

.im-logo-icon {
    width: 51px;
    height: 52px;
    background: linear-gradient(135deg, var(--im-primary) 0%, var(--im-primary-light) 50%, var(--im-primary-dark) 100%);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
    box-shadow: 
        0 8px 30px rgba(10,94,159,0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.im-logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: im-logo-shine 4s infinite;
}

.im-logo:hover .im-logo-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 12px 40px rgba(10,101,152,0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

@keyframes im-logo-shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.im-logo-text {
    font-weight: 800;
}

.im-nav {
    display: flex;
    gap: 39px;
    align-items: center;
}

.im-nav-link {
    color: var(--im-text);
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 17px 20px;
    border-radius: 15px;
}

.im-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 85%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--im-primary), transparent);
    border-radius: 1px;
    transition: transform 0.45s;
    box-shadow: 0 0 15px rgba(10,97,153,0.4);
}

.im-nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(10,104,146,0.12) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.45s, height 0.45s;
    z-index: -1;
}

.im-nav-link:hover::before {
    width: 130px;
    height: 130px;
}

.im-nav-link:hover {
    color: var(--im-primary-dark);
    transform: translateY(-4px);
    text-shadow: 0 2px 10px rgba(10,106,154,0.25);
}

.im-nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
    box-shadow: 0 0 20px rgba(10,100,147,0.5);
}

.im-nav-link--active {
    color: var(--im-primary-dark);
    background: linear-gradient(135deg, rgba(10,103,155,0.15), rgba(10,131,199,0.1));
    box-shadow: 0 5px 18px rgba(10,99,156,0.25);
}

.im-nav-link--active::after {
    transform: translateX(-50%) scaleX(1);
}

.im-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 14px;
}

.im-menu-line {
    width: 33px;
    height: 3px;
    background: var(--im-primary);
    transition: all 0.35s ease;
    border-radius: 3px;
}

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

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

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

.im-mobile-nav {
    display: none;
    flex-direction: column;
    padding: 30px 35px;
    background: var(--im-bg);
    border-top: 3px solid var(--im-border);
}

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

.im-mobile-link {
    padding: 19px 0;
    color: var(--im-text);
    text-decoration: none;
    font-weight: 800;
    border-bottom: 2px solid var(--im-border);
    transition: all 0.35s;
    position: relative;
}

.im-mobile-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(180deg, var(--im-primary), var(--im-primary-light));
    transition: width 0.35s;
}

.im-mobile-link:hover::before {
    width: 4px;
}

.im-mobile-link:hover {
    color: var(--im-primary-dark);
    padding-left: 14px;
    background: rgba(10,106,149,0.05);
}

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

/* Hero Section */
.im-hero {
    background: linear-gradient(135deg, #0a1c22 0%, #1b2a52 45%, #0a1532 50%, #1d2849 55%, #0a202e 100%);
    color: #ffffff;
    padding: 150px 0 130px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.im-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 35% 45%, rgba(10,100,157,0.25) 0%, transparent 50%),
        radial-gradient(circle at 65% 55%, rgba(35,197,91,0.18) 0%, transparent 50%);
    animation: im-hero-glow 10s ease-in-out infinite;
}

.im-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 140px, rgba(10,96,159,0.05) 140px, rgba(10,99,151,0.05) 280px);
    animation: im-hero-pattern 32s linear infinite;
    pointer-events: none;
}

@keyframes im-hero-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.92; }
}

@keyframes im-hero-pattern {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(140px, 140px) rotate(360deg); }
}

.im-hero-content {
    max-width:100%;
    margin: 0 auto;
    padding: 0 34px;
    position: relative;
    z-index: 2;
    animation: im-hero-content-fade-in 1.2s ease-out;
}

@keyframes im-hero-content-fade-in {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.im-hero-badge {
    display: inline-block;
    padding: 18px 43px;
    background: linear-gradient(135deg, rgba(10,109,160,0.35) 0%, rgba(10,129,203,0.25) 100%);
    border: 3px solid rgba(10,102,145,0.65);
    border-radius: 71px;
    font-size: 19px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3.4px;
    margin-bottom: 47px;
    box-shadow: 
        0 5px 35px rgba(10,96,153,0.35), 
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        0 0 40px rgba(10,109,154,0.3),
        inset 0 0 20px rgba(10,95,147,0.2);
    position: relative;
    overflow: hidden;
    animation: im-badge-pulse 4s ease-in-out infinite;
    transition: all 0.4s;
}

.im-hero-badge:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 45px rgba(10,105,155,0.45), 
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 0 50px rgba(10,98,156,0.4),
        inset 0 0 25px rgba(10,108,149,0.25);
}

.im-hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: im-badge-shine 4s infinite;
}

@keyframes im-badge-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 35px rgba(10,105,150,0.35), inset 0 2px 0 rgba(255, 255, 255, 0.25), 0 0 40px rgba(10,101,151,0.3); }
    50% { transform: scale(1.04); box-shadow: 0 12px 45px rgba(10,108,159,0.45), inset 0 2px 0 rgba(255, 255, 255, 0.3), 0 0 50px rgba(10,104,145,0.4); }
}

@keyframes im-badge-shine {
    0% { transform: rotate(0deg) translate(-50%, -50%); }
    100% { transform: rotate(360deg) translate(-50%, -50%); }
}

.im-hero-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 70px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 34px 0;
    color: #ffffff;
    text-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.75),
        0 8px 35px rgba(10,101,146,0.5),
        0 0 60px rgba(10,103,154,0.25);
    background: linear-gradient(135deg, #ffffff 0%, var(--im-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: im-title-glow 5s ease-in-out infinite;
    position: relative;
}

.im-hero-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--im-primary), var(--im-primary-light), var(--im-primary), transparent);
    border-radius: 4px;
    opacity: 0.75;
    animation: im-title-underline 4.5s ease-in-out infinite;
}

@keyframes im-title-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

@keyframes im-title-underline {
    0%, 100% { width: 240px; opacity: 0.75; }
    50% { width: 340px; opacity: 0.95; }
}

.im-hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
    margin: 0 0 52px 0;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

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

.im-btn {
    display: inline-flex;
    align-items: center;
    padding: 20px 46px;
    font-weight: 900;
    font-size: 22px;
    text-decoration: none;
    border-radius: 13px;
    transition: all 0.5s ease;
    border: none;
    cursor: pointer;
}

.im-btn-primary {
    background: linear-gradient(135deg, var(--im-primary) 0%, var(--im-primary-light) 50%, var(--im-primary-dark) 100%);
    color: #ffffff;
    box-shadow: 
        0 10px 40px rgba(10,104,155,0.55), 
        inset 0 2px 0 rgba(255, 255, 255, 0.35),
        0 0 30px rgba(10,100,156,0.4);
    position: relative;
    overflow: hidden;
}

.im-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s;
}

.im-btn-primary:hover::before {
    left: 100%;
}

.im-btn-primary:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 
        0 18px 50px rgba(10,97,157,0.65), 
        inset 0 2px 0 rgba(255, 255, 255, 0.45),
        0 0 40px rgba(10,106,158,0.5);
}

.im-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.im-btn-secondary {
    position: relative;
    overflow: hidden;
}

.im-btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.im-btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.im-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.35), 0 0 50px rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Rating Section */
.im-rating-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 54px 0;
    border-top: 4px solid rgba(10,102,154,0.25);
    border-bottom: 3px solid rgba(10,96,146,0.25);
}

.im-rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.95);
    padding: 35px 53px;
    border-radius: 71px;
    box-shadow: 
        0 17px 44px rgba(10,109,148,0.15), 
        inset 0 2px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(10,105,149,0.1);
    border: 3px solid rgba(10,96,157,0.25);
    position: relative;
    overflow: hidden;
}

.im-rating-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(10,98,150,0.1), transparent);
    animation: im-rating-shine 4.5s infinite;
}

.im-rating-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 73px;
    padding: 1px;
    background: linear-gradient(135deg, var(--im-primary), var(--im-primary-light), var(--im-primary-dark), var(--im-primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s;
    animation: im-rating-border 4.5s ease-in-out infinite;
}

.im-rating-box {
    transition: transform 0.5s, box-shadow 0.5s;
}

.im-rating-box:hover {
    transform: scale(1.02) translateY(-3px);
    box-shadow: 
        0 18px 50px rgba(10,108,158,0.2), 
        inset 0 2px 0 rgba(255, 255, 255, 1),
        0 0 0 2px rgba(10,105,159,0.15),
        0 0 40px rgba(10,107,152,0.1),
        0 8px 25px rgba(10,98,160,0.15);
}

@keyframes im-rating-shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes im-rating-border {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.35; }
}

.im-rating-label {
    font-size: 17px;
    color: var(--im-text-light);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.im-stars {
    display: flex;
    gap: 6px;
}

.im-star {
    font-size: 28px;
    color: #d8d6e3;
    position: relative;
    transition: all 0.3s;
}

.im-star--filled {
    color: var(--im-gold);
    text-shadow: 0 0 18px rgba(38,203,94,0.7);
    animation: im-star-twinkle 2.2s ease-in-out infinite;
}

.im-star--filled:nth-child(1) { animation-delay: 0s; }
.im-star--filled:nth-child(2) { animation-delay: 0.25s; }
.im-star--filled:nth-child(3) { animation-delay: 0.5s; }
.im-star--filled:nth-child(4) { animation-delay: 0.75s; }
.im-star--filled:nth-child(5) { animation-delay: 1s; }

@keyframes im-star-twinkle {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.18); filter: brightness(1.45); }
}

.im-rating-number {
    font-size: 30px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--im-primary), var(--im-primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.im-rating-reviews {
    font-size: 17px;
    color: var(--im-text-light);
}

/* Main Content */
.im-main {
    padding: 85px 0;
    position: relative;
}

.im-article {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.im-intro {
    margin-bottom: 68px;
    padding: 44px;
    background: linear-gradient(135deg, rgba(10,94,145,0.08) 0%, rgba(10,139,205,0.05) 100%);
    border-radius: 24px;
    border-left: 5px solid var(--im-primary);
    box-shadow: 
        0 7px 35px rgba(10,107,146,0.1),
        inset 0 2px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(10,103,147,0.12);
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}

.im-intro:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 45px rgba(10,94,156,0.15),
        inset 0 2px 0 rgba(255, 255, 255, 1),
        0 0 0 2px rgba(10,106,157,0.18),
        0 0 30px rgba(10,101,149,0.1);
    border-left-width: 10px;
}

.im-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 170px;
    height: 170px;
    background: radial-gradient(circle, rgba(10,103,158,0.14) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(35%, -35%);
}

.im-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 160px;
    height: 120px;
    background: radial-gradient(circle, rgba(10,131,202,0.12) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-35%, 35%);
}

.im-lead {
    font-size: 28px;
    line-height: 2;
    color: var(--im-text);
    margin-bottom: 35px;
    font-weight: 800;
}

.im-article h2 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 49px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--im-primary) 0%, var(--im-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 78px 0 41px 0;
    line-height: 1.25;
    position: relative;
    padding-bottom: 33px;
    padding-left: 24px;
}

.im-article h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 70%;
    background: linear-gradient(180deg, var(--im-primary), var(--im-primary-light), var(--im-primary));
    border-radius: 3px;
    box-shadow: 
        0 0 20px rgba(10,104,159,0.65),
        0 0 35px rgba(10,106,152,0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: im-h2-line 3s ease-in-out infinite;
}

.im-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25px;
    width: 160px;
    height: 6px;
    background: linear-gradient(90deg, var(--im-primary), var(--im-primary-light), transparent);
    border-radius: 4px;
    animation: im-h2-underline 4.5s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(10,103,153,0.5);
}

@keyframes im-h2-line {
    0%, 100% { opacity: 1; height: 70%; }
    50% { opacity: 0.9; height: 80%; }
}

@keyframes im-h2-underline {
    0%, 100% { width: 160px; opacity: 1; }
    50% { width: 140px; opacity: 0.9; }
}

.im-article h3 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: var(--im-primary);
    margin: 56px 0 31px 0;
    position: relative;
    padding-left: 29px;
}

.im-article h3::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--im-primary);
    font-size: 26px;
    line-height: 1.45;
    text-shadow: 0 0 15px rgba(10,97,145,0.65), 0 0 30px rgba(10,99,154,0.4);
    animation: im-h3-dot 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(10,109,146,0.5));
}

.im-article h3::after {
    content: '';
    position: absolute;
    left: 15px;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--im-primary), var(--im-primary-light), transparent);
    border-radius: 1px;
    transition: width 0.5s;
    animation: im-h3-underline 4s ease-in-out infinite;
}

@keyframes im-h3-underline {
    0%, 100% { width: 0; opacity: 0; }
    50% { width: 80px; opacity: 1; }
}

@keyframes im-h3-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.9; }
}

.im-article p {
    margin-bottom: 32px;
    line-height: 2.1;
    color: var(--im-text);
    position: relative;
    padding-left: 28px;
}

.im-article p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 9px;
    height: 9px;
    background: var(--im-primary);
    border-radius: 50%;
    box-shadow: 
        0 0 21px rgba(10,100,155,0.75),
        0 0 35px rgba(10,102,147,0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    opacity: 0.85;
    transition: all 0.4s;
}

.im-article p:hover::before {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 
        0 0 25px rgba(10,99,148,0.9),
        0 0 45px rgba(10,109,157,0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.im-article p:first-of-type::before {
    display: none;
}

.im-list,
.im-list-ordered {
    margin: 38px 0;
    padding-left: 44px;
    position: relative;
}

.im-list::before,
.im-list-ordered::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--im-primary), var(--im-primary-light), var(--im-primary-dark));
    border-radius: 2px;
}

.im-list li,
.im-list-ordered li {
    margin-bottom: 24px;
    line-height: 2;
    color: var(--im-text);
    padding-left: 15px;
    position: relative;
    transition: all 0.45s;
}

.im-list li::marker {
    color: var(--im-primary);
    font-weight: 900;
}

.im-list li::before,
.im-list-ordered li::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--im-primary), var(--im-primary-light));
    border-radius: 1px;
    transition: width 0.4s;
}

.im-list li:hover::before,
.im-list-ordered li:hover::before {
    width: 12px;
}

.im-list li:hover,
.im-list-ordered li:hover {
    color: var(--im-primary-dark);
    transform: translateX(10px);
    padding-left: 21px;
}

.im-list-ordered {
    list-style: decimal;
}

.im-image-wrapper {
    margin: 67px 0;
    border-radius: 23px;
    overflow: hidden;
    box-shadow: 
        0 22px 65px var(--im-shadow),
        0 14px 45px rgba(10,102,158,0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(10,98,159,0.12);
    position: relative;
    border: 6px solid rgba(10,109,151,0.25);
    background: linear-gradient(135deg, rgba(10,95,160,0.06) 0%, rgba(10,139,204,0.04) 100%);
    transition: transform 0.6s, box-shadow 0.6s;
}

.im-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 5px solid var(--im-primary);
    border-radius: 26px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.6s;
}

.im-image-wrapper:hover::before {
    opacity: 0.45;
    border-color: var(--im-primary-light);
    box-shadow: 0 0 30px rgba(10,107,145,0.45);
}

.im-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10,98,154,0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s;
    pointer-events: none;
    z-index: 2;
}

.im-image-wrapper:hover::after {
    opacity: 1;
}

.im-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 28px 70px var(--im-shadow),
        0 18px 50px rgba(10,108,146,0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        0 0 0 2px rgba(10,105,147,0.18);
    transition: transform 0.6s, box-shadow 0.6s;
}

.im-image-wrapper .im-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,107,156,0.12), rgba(10,135,199,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    animation: im-placeholder-pulse 2.8s ease-in-out infinite;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(3px);
}

.im-image-wrapper .im-image-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 4px solid rgba(10,108,157,0.3);
    border-top-color: var(--im-primary);
    border-radius: 50%;
    animation: im-placeholder-spin 1s linear infinite;
}

@keyframes im-placeholder-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.im-image-wrapper .im-image-placeholder::after {
    content: 'Loading...';
    color: var(--im-primary-dark);
    font-weight: 800;
    font-size: 20px;
    animation: im-loading-text 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
    margin-top: 82px;
}

@keyframes im-placeholder-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.78; }
}

@keyframes im-loading-text {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.im-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s, filter 0.6s;
    opacity: 0;
    filter: blur(5px);
    position: relative;
    z-index: 1;
}

.im-article-image.loading {
    opacity: 0.5;
    filter: blur(6px);
    transition: opacity 0.6s, filter 0.6s;
}

.im-article-image.error {
    opacity: 0.3;
    filter: grayscale(100%);
}

.im-article-image.loaded {
    opacity: 1;
    filter: blur(0);
    animation: im-image-fade-in 0.8s ease-out;
    will-change: transform;
}

.im-article-image.loaded:hover {
    transform: scale(1.06);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes im-image-fade-in {
    0% {
        opacity: 0;
        transform: scale(1.06);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.im-image-wrapper:hover .im-article-image.loaded {
    transform: scale(1.06);
}

/* Video Embed Component */
.im-video-section {
    margin: 73px 0;
    padding: 58px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    border-radius: 27px;
    border: 5px solid rgba(10,94,149,0.2);
    box-shadow: 0 12px 40px rgba(10,104,158,0.12);
}

.im-video-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 45px;
    background: linear-gradient(135deg, var(--im-primary), var(--im-primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 23px;
}

.im-video-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--im-primary), var(--im-primary-light), var(--im-primary), transparent);
    border-radius: 4px;
    animation: im-video-title-underline 4s ease-in-out infinite;
}

@keyframes im-video-title-underline {
    0%, 100% { width: 160px; opacity: 0.8; }
    50% { width: 160px; opacity: 1; }
}

.im-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 17px;
    box-shadow: 
        0 15px 53px rgba(10,107,150,0.25),
        0 8px 30px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    background: #000;
    margin: 0 auto;
    max-width: 900px;
    border: 5px solid rgba(10,97,160,0.3);
    transition: all 0.5s;
}

.im-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 17px;
    background: radial-gradient(circle at center, rgba(10,104,152,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.im-video-wrapper:hover::before {
    opacity: 1;
}

.im-video-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 22px 65px rgba(10,106,145,0.35),
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        0 0 50px rgba(10,97,154,0.3);
    border-color: rgba(10,99,147,0.5);
}

.im-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 17px;
    transition: opacity 0.5s, filter 0.5s;
}

.im-video-wrapper iframe.loading {
    opacity: 0.7;
    filter: blur(3px);
}

.im-video-wrapper iframe.loaded {
    opacity: 1;
    filter: blur(0);
    animation: im-video-fade-in 0.8s ease-out;
}

@keyframes im-video-fade-in {
    0% {
        opacity: 0;
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* CTA Banner Component */
.im-cta-banner {
    margin: 78px 0;
    padding: 68px 0;
    background: linear-gradient(135deg, var(--im-primary) 0%, var(--im-primary-light) 50%, var(--im-primary-dark) 100%);
    border-radius: 27px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(10,106,156,0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.im-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(28,192,90,0.12) 0%, transparent 50%);
    animation: im-cta-glow 11s ease-in-out infinite;
}

.im-cta-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 150px, rgba(255, 255, 255, 0.05) 150px, rgba(255, 255, 255, 0.05) 300px);
    animation: im-cta-pattern 25s linear infinite;
    pointer-events: none;
}

@keyframes im-cta-pattern {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(150px, 150px) rotate(360deg); }
}

@keyframes im-cta-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.94; }
}

.im-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    color: #ffffff;
    animation: im-cta-content-fade-in 1s ease-out;
}

@keyframes im-cta-content-fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.im-cta-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 27px;
    text-shadow: 
        0 3px 20px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 255, 255, 0.2);
    position: relative;
    animation: im-cta-title-glow 3s ease-in-out infinite;
}

@keyframes im-cta-title-glow {
    0%, 100% { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.2); }
    50% { text-shadow: 0 6px 25px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 255, 255, 0.3); }
}

.im-cta-text {
    font-size: 22px;
    margin-bottom: 43px;
    opacity: 0.95;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.im-cta-button {
    display: inline-block;
    padding: 23px 50px;
    background: #ffffff;
    color: var(--im-primary);
    font-weight: 900;
    font-size: 20px;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.5s;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.im-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10,108,155,0.1), transparent);
    transition: left 0.8s;
}

.im-cta-button:hover::before {
    left: 100%;
}

.im-cta-button:hover {
    transform: translateY(-7px) scale(1.05);
    box-shadow: 
        0 20px 55px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 255, 255, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.im-cta-button:active {
    transform: translateY(-4px) scale(1.02);
}

/* FAQ Section */
.im-faq-section {
    margin: 85px 0;
    padding: 66px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    border-radius: 29px;
    border: 3px solid rgba(10,101,157,0.25);
    position: relative;
    overflow: hidden;
}

.im-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--im-primary), var(--im-primary-light), var(--im-primary));
    animation: im-faq-top-line 4s ease-in-out infinite;
}

@keyframes im-faq-top-line {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.im-faq-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 47px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 55px;
    background: linear-gradient(135deg, var(--im-primary), var(--im-primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 25px;
}

.im-faq-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--im-primary), var(--im-primary-light), var(--im-primary), transparent);
    border-radius: 4px;
    animation: im-faq-title-underline 4.5s ease-in-out infinite;
}

@keyframes im-faq-title-underline {
    0%, 100% { width: 130px; opacity: 0.8; }
    50% { width: 170px; opacity: 1; }
}

.im-faq-list {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 46px;
}

.im-faq-item {
    background: linear-gradient(135deg, var(--im-bg) 0%, #f8f9fa 100%);
    border: 3px solid var(--im-border);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 30px rgba(10,108,150,0.1),
        0 0 0 1px rgba(10,94,159,0.08);
    position: relative;
    margin-bottom: 28px;
}

.im-faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 100%;
    background: linear-gradient(180deg, var(--im-primary), var(--im-primary-light), var(--im-primary-dark));
    transform: scaleY(0);
    transition: transform 0.55s;
    box-shadow: 0 0 22px rgba(10,104,151,0.7);
}

.im-faq-item:hover {
    border-color: rgba(10,107,160,0.6);
    box-shadow: 
        0 14px 40px var(--im-shadow),
        0 8px 25px rgba(10,101,152,0.15),
        0 0 0 2px rgba(10,103,145,0.15);
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 249, 250, 0.95) 100%);
}

.im-faq-item:hover::before,
.im-faq-item.active::before {
    transform: scaleY(1);
}

.im-faq-item.active {
    border-color: var(--im-primary);
    box-shadow: 
        0 20px 50px var(--im-shadow),
        0 10px 35px rgba(10,106,154,0.2),
        0 0 0 3px rgba(10,101,147,0.1),
        inset 0 2px 0 rgba(255, 255, 255, 1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transform: translateX(5px);
}

.im-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 32px 45px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 22px;
    font-weight: 900;
    color: var(--im-primary);
    position: relative;
    transition: all 0.4s;
}

.im-faq-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 45px;
    right: 45px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(10,97,148,0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.im-faq-item:hover .im-faq-question::after {
    opacity: 1;
}

.im-faq-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--im-border), #e3e6f2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--im-text);
    flex-shrink: 0;
    transition: all 0.5s;
}

.im-faq-item.active .im-faq-icon {
    transform: rotate(180deg) scale(1.25);
    background: linear-gradient(135deg, var(--im-primary), var(--im-primary-light));
    color: #ffffff;
    box-shadow: 
        0 8px 30px rgba(10,104,156,0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.im-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s ease;
}

.im-faq-item.active .im-faq-answer {
    max-height: 1000px;
}

.im-faq-answer-content {
    padding: 0 48px 34px;
    font-size: 20px;
    line-height: 2;
    color: var(--im-text);
}

/* Footer */
.im-footer {
    background: linear-gradient(135deg, #0e232c 0%, #102f43 50%, #0f1a36 100%);
    color: #ffffff;
    padding: 67px 0 46px;
    margin-top: 85px;
    position: relative;
    overflow: hidden;
}

.im-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--im-primary), transparent);
    animation: im-footer-top-line 5s ease-in-out infinite;
}

@keyframes im-footer-top-line {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.im-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 53px;
    margin-bottom: 49px;
}

.im-footer-section h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 23px;
    color: var(--im-primary-light);
    position: relative;
    padding-bottom: 15px;
}

.im-footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--im-primary-light), transparent);
    border-radius: 3px;
    animation: im-footer-h3-line 3s ease-in-out infinite;
}

@keyframes im-footer-h3-line {
    0%, 100% { width: 50px; opacity: 0.8; }
    50% { width: 70px; opacity: 1; }
}

.im-footer-links {
    list-style: none;
}

.im-footer-links li {
    margin-bottom: 18px;
}

.im-footer-links a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: all 0.4s;
    position: relative;
}

.im-footer-links a::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--im-primary-light), var(--im-primary));
    transition: width 0.4s;
    box-shadow: 0 0 8px rgba(10,136,201,0.6);
}

.im-footer-links a::after {
    content: '';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(10,131,209,0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.im-footer-links a:hover::before {
    width: 10px;
}

.im-footer-links a:hover::after {
    width: 20px;
    height: 20px;
}

.im-footer-links a:hover {
    color: var(--im-primary-light);
    padding-left: 10px;
    text-shadow: 0 0 12px rgba(10,133,202,0.5), 0 0 25px rgba(10,143,210,0.3);
    transform: translateX(3px);
}

.im-footer-bottom {
    text-align: center;
    padding-top: 43px;
    border-top: 3px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
    position: relative;
}

.im-footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--im-primary-light), transparent);
    animation: im-footer-bottom-line 5s ease-in-out infinite;
}

@keyframes im-footer-bottom-line {
    0%, 100% { width: 0; opacity: 0; }
    50% { width: 200px; opacity: 1; }
}

/* Responsive */
@media (max-width: 968px) {
    .im-video-wrapper {
        max-width:100%;
    }
}

@media (max-width: 768px) {
    .im-nav {
        display: none;
    }

    .im-menu-toggle {
        display: flex;
    }

    .im-hero-title {
        font-size: 44px;
    }

    .im-hero-subtitle {
        font-size: 20px;
    }

    .im-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .im-btn {
        width: 100%;
        justify-content: center;
    }

    .im-article h2 {
        font-size: 34px;
    }

    .im-cta-title {
        font-size: 36px;
    }

    .im-video-wrapper {
        padding-bottom: 56.25%;
    }
}

/* ==================
   Company Logo Styles (110px height)
   ================== */
.fb-company-logo {
    width: 240px;
    height: 165px;
    object-fit: contain;
    background: var(--fb-white);
    border-radius: var(--fb-radius-sm);
    padding: 5px;
    margin-bottom: 8px;
    border: 2px solid var(--fb-gray-200);
}

.fb-company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ==================
   Action Buttons (Go + Review)
   ================== */
.fb-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fb-btn-primary {
    display: inline-block;
    padding: 11px 27px;
    background: var(--fb-secondary);
    color: var(--fb-dark);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-primary:hover {
    background: var(--fb-secondary-dark);
    color: var(--fb-dark);
    transform: translateY(-1px);
}

.fb-btn-review {
    display: inline-block;
    padding: 7px 24px;
    background: transparent;
    color: var(--fb-primary);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 2px solid var(--fb-primary);
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-review:hover {
    background: var(--fb-primary);
    color: var(--fb-white);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fb-company-logo {
        width: 160px;
        height: 100px;
    }

    .fb-action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .fb-btn-primary,
    .fb-btn-review {
        padding: 10px 13px;
        font-size: 13px;
    }
}
/* ==================
   UNIVERSAL MOBILE FIX - Company Logos & Table Adaptivity
   Applied to all sites
   ================== */
@media (max-width: 768px) {
    /* Universal logo selectors */
    [class*='company-logo'],
    [class*='CompanyLogo'],
    [class*='company_logo'],
    img[class*='logo'][class*='company'],
    .company-logo,
    .fb-company-logo,
    .catCompanyLogo,
    .tf-company-card__logo,
    .th-company-logo,
    .op-company-logo,
    .baah-logo,
    .review-logo {
        width: 140px !important;
        min-width: 140px !important;
        height: auto !important;
        min-height: 80px !important;
        max-height: 100px !important;
        padding: 10px !important;
        margin: 0 auto 9px !important;
        display: block !important;
        object-fit: contain !important;
    }
    
    /* Center company info/cards */
    [class*='company-info'],
    [class*='CompanyInfo'],
    [class*='company_info'],
    .fb-company-info,
    .catCompanyInfo,
    .tf-company-card__info {
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Center company name */
    [class*='company-name'],
    [class*='CompanyName'],
    .catCompanyName,
    .tf-company-card__name {
        text-align: center !important;
    }
    
    /* Center rating/stars */
    [class*='rating'],
    [class*='Rating'],
    [class*='stars'],
    [class*='Stars'],
    .catRating,
    .catStars {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Buttons full width */
    [class*='action-btn'],
    [class*='ActionBtn'],
    [class*='btn-cta'],
    [class*='btn-primary'],
    [class*='btn-review'],
    .catBtnCta,
    .catBtnReview,
    .fb-btn-primary,
    .fb-btn-review,
    .tf-btn-primary,
    .tf-btn-outline {
        display: block !important;
        width: 100% !important;
        padding: 12px 23px !important;
        text-align: center !important;
        font-size: 14px !important;
        margin-bottom: 9px !important;
    }
    
    /* Site logo bigger */
    [class*='site-logo'] img,
    [class*='SiteLogo'] img,
    .catLogo__icon,
    .tf-logo__icon,
    .th-logo__icon,
    header [class*='logo'] img {
        min-width: 45px !important;
        min-height: 45px !important;
    }
}
@media (max-width: 768px) { .im-alert-banner, .im-ticker { display: none \!important; } }

/* Mobile table adaptation */
@media (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }
    thead { display: none; }
    tr {
        margin-bottom: 20px;
        border: 2px solid #d9ded9;
        border-radius: 8px;
        padding: 16px;
        text-align: center;
        background: #fff;
    }
    td {
        border: none;
        padding: 11px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .im-company-logo {
        width: 35% !important;
        min-width: 120px;
        height: auto !important;
        margin: 0 auto 12px;
    }
    .im-company-info {
        text-align: center;
    }
    .im-company-info h4,
    .im-company-info p {
        text-align: center;
    }
    .im-rating {
        justify-content: center;
    }
}

/* Read Review button */
.im-btn-review {
    display: inline-block;
    padding: 7px 20px;
    background: transparent;
    border: 2px solid #23be5d;
    color: #1aca63;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 11px;
    transition: all 0.3s;
}
.im-btn-review:hover {
    background: #25c65e;
    color: #fff;
}
