/* Yale Pure Style - Auto-themed */
:root {
    --amie-primary: #134946;
    --amie-accent: #0a4986;
    --amie-gold: #0a4395;
    --amie-gold-light: #27d4b9;
    --amie-gold-dark: #119580;
    --amie-orange: #e1750a;
    --amie-orange-light: #f58b1f;
    --amie-orange-dark: #cc630a;
    --amie-brown: #864c12;
    --amie-beige: #F5F5DC;
    --amie-cream: #FFF8E7;
    --amie-bg: #FFFFFF;
    --amie-bg-light: #F8FAFE;
    --amie-bg-dark: #222013;
    --amie-text: #0a4e51;
    --amie-text-light: #6c6d82;
    --amie-border: #d6e5e7;
    --amie-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --amie-shadow-hover: rgba(0, 0, 0, 0.15);
    --amie-shadow-orange: rgba(233,124,10,0.2);
    --amie-success: #289f4b;
    --amie-danger: #d53b46;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--amie-text);
    background: var(--amie-bg);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(238,115,10,0.03) 0%, transparent 60%),
        radial-gradient(circle at 90% 80%, rgba(10,118,175,0.025) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(236,127,10,0.01) 0%, transparent 80%),
        linear-gradient(180deg, #ffffff 0%, #FDFCF8 50%, #ffffff 100%);
    background-attachment: fixed;
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(237,118,10,0.008) 2px, rgba(226,124,10,0.008) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(10,111,181,0.005) 2px, rgba(10,118,188,0.005) 4px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

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

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

/* Price Ticker */
.amie-ticker {
    background: linear-gradient(135deg, #20121a 0%, #263029 50%, #1f1a14 100%);
    color: #ffffff;
    padding: 17px 0;
    border-bottom: 3px solid rgba(225,127,10,0.3);
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.amie-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--amie-orange), transparent);
    animation: amie-shimmer 3s infinite;
}

@keyframes amie-shimmer {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.amie-ticker-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 41px;
    flex-wrap: wrap;
    padding: 0 24px;
}

.amie-ticker-item {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    padding: 7px 11px;
    border-radius: 7px;
    transition: all 0.3s ease;
    position: relative;
}

.amie-ticker-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(228,114,10,0.1);
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.amie-ticker-item:hover {
    transform: translateY(-2px);
}

.amie-ticker-metal {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.amie-ticker-price {
    font-size: 17px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--amie-orange), var(--amie-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(234,126,10,0.3);
    position: relative;
}

.amie-ticker-change {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.amie-ticker-change svg {
    width: 11px;
    height: 12px;
    flex-shrink: 0;
}

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

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

.amie-ticker-separator {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

.amie-ticker-update {
    text-align: center;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.amie-ticker-live {
    width: 7px;
    height: 6px;
    background: var(--amie-success);
    border-radius: 50%;
    display: inline-block;
    animation: amie-pulse 2s infinite;
}

@keyframes amie-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Header */
.amie-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--amie-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(21px) saturate(180%);
    box-shadow: 0 2px 23px rgba(0, 0, 0, 0.05), inset 0 -1px 0 rgba(239,126,10,0.1);
    transition: all 0.3s ease;
}

.amie-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--amie-orange), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.amie-header:hover::after {
    opacity: 0.5;
}

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

.amie-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--amie-primary);
    font-weight: 600;
    font-size: 19px;
    letter-spacing: -0.3px;
}

.amie-logo-icon {
    width: 39px;
    height: 36px;
    background: linear-gradient(135deg, var(--amie-orange) 0%, var(--amie-orange-dark) 100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(236,116,10,0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.amie-logo-icon::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: amie-rotate 3s infinite;
}

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

.amie-logo:hover .amie-logo-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 6px 20px rgba(227,119,10,0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.amie-logo-text {
    font-weight: 600;
}

.amie-nav {
    display: flex;
    gap: 33px;
    align-items: center;
}

.amie-nav-link {
    color: var(--amie-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 7px 0;
}

.amie-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amie-orange);
    transition: width 0.3s ease;
}

.amie-nav-link:hover {
    color: var(--amie-orange);
}

.amie-nav-link:hover::after {
    width: 100%;
}

.amie-nav-link--active {
    color: var(--amie-orange);
}

.amie-nav-link--active::after {
    width: 100%;
}

.amie-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

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

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

.amie-menu-line {
    width: 24px;
    height: 2px;
    background: var(--amie-primary);
    transition: all 0.3s ease;
}

.amie-mobile-nav {
    display: none;
    flex-direction: column;
    padding: 21px 24px;
    background: var(--amie-bg);
    border-top: 1px solid var(--amie-border);
}

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

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

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

/* Hero Section */
.amie-hero {
    background: linear-gradient(135deg, #191118 0%, #313023 30%, #181a21 50%, #2b2d2c 70%, #111811 100%);
    color: #ffffff;
    padding: 100px 0 79px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -2px 30px rgba(0, 0, 0, 0.3);
}

.amie-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(230,122,10,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(10,125,186,0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(228,119,10,0.05) 0%, transparent 70%);
    animation: amie-pulse-hero 4s ease-in-out infinite;
}

.amie-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(229,125,10,0.02) 100px,
        rgba(234,115,10,0.02) 200px
    );
    animation: amie-drift 20s linear infinite;
}

@keyframes amie-pulse-hero {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes amie-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.amie-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 22px;
    position: relative;
    z-index: 2;
}

.amie-hero-badge {
    display: inline-block;
    padding: 11px 24px;
    background: rgba(235,122,10,0.15);
    border: 1px solid rgba(232,128,10,0.3);
    border-radius: 32px;
    font-size: 9px;
    font-weight: 600;
    color: var(--amie-orange-light);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 27px;
    box-shadow: 0 3px 16px rgba(233,118,10,0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

@keyframes amie-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.amie-hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236,121,10,0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.amie-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 18px 0;
    color: #ffffff;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 4px 20px rgba(227,124,10,0.2),
        0 0 40px rgba(224,114,10,0.1);
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, var(--amie-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: amie-title-glow 3s ease-in-out infinite;
}

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

.amie-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 0 35px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.amie-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 31px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.amie-btn-primary {
    background: var(--amie-orange);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(230,127,10,0.3);
}

.amie-btn-primary:hover {
    background: var(--amie-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231,117,10,0.4);
}

.amie-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Rating Section */
.amie-rating-section {
    background: linear-gradient(135deg, var(--amie-cream) 0%, rgba(255, 248, 231, 0.8) 50%, var(--amie-cream) 100%);
    padding: 33px 0;
    border-top: 3px solid rgba(232,117,10,0.15);
    border-bottom: 2px solid rgba(233,123,10,0.15);
    position: relative;
    overflow: hidden;
}

.amie-rating-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 50px,
        rgba(238,114,10,0.02) 50px,
        rgba(239,120,10,0.02) 51px
    );
    pointer-events: none;
}

.amie-rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 33px;
    border-radius: 53px;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226,123,10,0.15);
}

.amie-rating-label {
    font-size: 13px;
    color: var(--amie-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.amie-stars {
    display: flex;
    gap: 4px;
}

.amie-star {
    font-size: 15px;
    color: #e3e5d7;
}

.amie-star--filled {
    color: var(--amie-orange);
}

.amie-rating-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--amie-primary);
}

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

/* Main Content */
.amie-main {
    padding: 58px 0;
}

.amie-article {
    max-width: 800px;
    margin: 0 auto;
}

.amie-intro {
    margin-bottom: 50px;
    padding: 35px;
    background: linear-gradient(135deg, var(--amie-cream) 0%, rgba(255, 248, 231, 0.8) 100%);
    border-radius: 14px;
    border-left: 3px solid var(--amie-orange);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.amie-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(230,116,10,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.amie-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--amie-orange), transparent);
    border-radius: 0 1px 3px 0;
}

.amie-lead {
    font-size: 19px;
    line-height: 1.8;
    color: var(--amie-text);
    margin-bottom: 18px;
    font-weight: 500;
}

.amie-article h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--amie-primary);
    margin: 50px 0 27px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 22px;
    padding-left: 17px;
    border-left: 5px solid var(--amie-orange);
    background: linear-gradient(90deg, rgba(231,122,10,0.05) 0%, transparent 100%);
    padding-top: 11px;
    padding-right: 10px;
    border-radius: 0 9px 8px 0;
    transition: all 0.3s ease;
}

.amie-article h2::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--amie-orange), var(--amie-orange-light), var(--amie-orange));
    border-radius: 1px 0 0 3px;
}

.amie-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--amie-orange), var(--amie-orange-light), transparent);
    border-radius: 3px;
}

.amie-article h2:hover {
    padding-left: 24px;
    background: linear-gradient(90deg, rgba(228,129,10,0.08) 0%, transparent 100%);
    transform: translateX(4px);
}

.amie-article h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--amie-primary);
    margin: 33px 0 21px 0;
}

.amie-article p {
    margin-bottom: 19px;
    line-height: 1.8;
    color: var(--amie-text);
}

.amie-list,
.amie-list-ordered {
    margin: 22px 0;
    padding-left: 29px;
}

.amie-list li,
.amie-list-ordered li {
    margin-bottom: 14px;
    line-height: 1.7;
    color: var(--amie-text);
}

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

.amie-image-wrapper {
    margin: 43px 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 
        0 8px 30px var(--amie-shadow),
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(235,116,10,0.15);
    position: relative;
    background: var(--amie-cream);
    transition: all 0.4s ease;
}

.amie-image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--amie-orange), var(--amie-orange-light), var(--amie-orange-dark), var(--amie-orange));
    border-radius: 11px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: amie-border-glow 3s ease-in-out infinite;
}

@keyframes amie-border-glow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

.amie-image-wrapper:hover::before {
    opacity: 0.4;
}

.amie-image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px var(--amie-shadow-hover),
        0 6px 20px rgba(232,122,10,0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(238,118,10,0.3);
}

.amie-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: amie-fade-in 0.6s ease forwards;
}

@keyframes amie-fade-in {
    from { opacity: 0; transform: scale(1.05); }
    to { opacity: 1; transform: scale(1); }
}

.amie-image-wrapper:hover .amie-article-image {
    transform: scale(1.05);
}

.amie-article-image[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.amie-article-image[loading="lazy"].loaded {
    opacity: 1;
}

/* Company Card Component */
.amie-company-section {
    margin: 53px 0;
}

.amie-company-card {
    background: linear-gradient(135deg, #13111a 0%, #262f25 50%, #202314 100%);
    border-radius: 15px;
    padding: 34px;
    border: 3px solid rgba(239,125,10,0.2);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.15),
        0 4px 15px rgba(237,121,10,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.amie-company-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227,118,10,0.1) 0%, transparent 70%);
    animation: amie-float 8s ease-in-out infinite;
}

@keyframes amie-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

.amie-company-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.2),
        0 6px 20px rgba(225,115,10,0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(231,127,10,0.4);
}

.amie-company-header {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-bottom: 26px;
}

.amie-company-logo {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--amie-orange), var(--amie-orange-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 24px;
    box-shadow: 
        0 6px 20px rgba(228,118,10,0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.amie-company-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: amie-rotate 3s infinite;
}

.amie-company-card:hover .amie-company-logo {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 8px 25px rgba(235,120,10,0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.amie-company-title h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 7px 0;
}

.amie-company-tagline {
    font-size: 13px;
    color: var(--amie-orange-light);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.amie-company-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 26px;
    padding-bottom: 29px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.amie-metric {
    text-align: center;
    padding: 19px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.amie-metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239,114,10,0.2), transparent);
    transition: left 0.5s ease;
}

.amie-metric:hover::before {
    left: 100%;
}

.amie-metric:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237,126,10,0.2);
}

.amie-metric-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 6px;
}

.amie-metric-value {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
}

.amie-company-features {
    margin-bottom: 30px;
}

.amie-feature-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 6px;
}

.amie-feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--amie-orange);
    transition: width 0.3s ease;
}

.amie-feature-item:hover {
    transform: translateX(4px);
    color: #ffffff;
}

.amie-feature-item:hover::before {
    width: 4px;
}

.amie-feature-icon {
    color: var(--amie-orange);
    font-weight: bold;
    font-size: 16px;
}

.amie-company-actions {
    display: flex;
    gap: 9px;
}

.amie-btn-get-kit {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 23px;
    background: var(--amie-orange);
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.amie-btn-get-kit:hover {
    background: var(--amie-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(224,129,10,0.4);
}

.amie-btn-review {
    padding: 17px 23px;
    background: transparent;
    color: var(--amie-orange);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border: 2px solid var(--amie-orange);
    border-radius: 7px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.amie-btn-review:hover {
    background: rgba(225,120,10,0.1);
}

/* Testimonial Slider Component */
.amie-testimonial-section {
    margin: 62px 0;
    padding: 47px 0;
    background: linear-gradient(135deg, var(--amie-cream) 0%, rgba(255, 248, 231, 0.9) 50%, var(--amie-cream) 100%);
    border-radius: 19px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.amie-testimonial-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229,129,10,0.05) 0%, transparent 70%);
    animation: amie-float 10s ease-in-out infinite;
}

.amie-testimonial-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(10,116,183,0.04) 0%, transparent 70%);
    animation: amie-float 12s ease-in-out infinite reverse;
}

.amie-testimonial-header {
    text-align: center;
    margin-bottom: 40px;
}

.amie-testimonial-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--amie-primary);
    margin-bottom: 12px;
}

.amie-testimonial-subtitle {
    font-size: 16px;
    color: var(--amie-text-light);
}

.amie-testimonial-slider {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.amie-testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.amie-testimonial-slide {
    min-width: 100%;
    padding: 0 19px;
}

.amie-testimonial-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 33px;
    box-shadow: 0 4px 23px rgba(0, 0, 0, 0.08);
}

.amie-testimonial-quote {
    font-size: 48px;
    color: var(--amie-orange);
    line-height: 1;
    margin-bottom: 13px;
    font-family: 'Cormorant Garamond', serif;
}

.amie-testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--amie-text);
    margin-bottom: 23px;
    font-style: italic;
}

.amie-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.amie-testimonial-image {
    width: 57px;
    height: 56px;
    border-radius: 50%;
    background: var(--amie-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.amie-testimonial-info {
    flex: 1;
}

.amie-testimonial-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--amie-primary);
    margin-bottom: 3px;
}

.amie-testimonial-role {
    font-size: 14px;
    color: var(--amie-text-light);
    margin-bottom: 5px;
}

.amie-testimonial-rating {
    color: var(--amie-orange);
    font-size: 14px;
    letter-spacing: 3px;
}

.amie-testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 33px;
}

.amie-testimonial-dot {
    width: 12px;
    height: 10px;
    border-radius: 50%;
    background: #d9dfe6;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.amie-testimonial-dot.active {
    background: var(--amie-orange);
    transform: scale(1.2);
}

/* Section Divider */
.amie-section-divider {
    height: 100px;
    position: relative;
    margin: 59px 0;
    overflow: hidden;
}

.amie-section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(232,116,10,0.3) 20%, 
        var(--amie-orange) 50%, 
        rgba(233,122,10,0.3) 80%, 
        transparent
    );
    transform: translateY(-50%);
}

.amie-section-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--amie-orange), var(--amie-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    box-shadow: 
        0 0 25px rgba(238,128,10,0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: amie-divider-pulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes amie-divider-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* FAQ Section */
.amie-faq-section {
    margin: 59px 0;
    position: relative;
}

.amie-faq-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--amie-orange), transparent);
    border-radius: 3px;
}

.amie-faq-header {
    text-align: center;
    margin-bottom: 52px;
}

.amie-faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--amie-primary);
    margin-bottom: 13px;
}

.amie-faq-subtitle {
    font-size: 15px;
    color: var(--amie-text-light);
}

.amie-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.amie-faq-item {
    background: #ffffff;
    border: 1px solid var(--amie-border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.amie-faq-item:hover {
    border-color: rgba(226,122,10,0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.amie-faq-item.active {
    border-color: var(--amie-orange);
    box-shadow: 0 4px 20px rgba(224,118,10,0.15);
}

.amie-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 21px;
    padding: 22px 31px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.amie-faq-question:hover {
    background: rgba(225,125,10,0.03);
}

.amie-faq-question-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--amie-primary);
    line-height: 1.4;
}

.amie-faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230,115,10,0.1);
    border-radius: 50%;
    color: var(--amie-orange);
    transition: all 0.3s ease;
}

.amie-faq-item.active .amie-faq-icon {
    transform: rotate(180deg);
    background: var(--amie-orange);
    color: #ffffff;
}

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

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

.amie-faq-answer-content {
    padding: 0 26px 23px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--amie-text);
}

.amie-faq-answer-content p {
    margin-bottom: 15px;
}

/* Footer */
.amie-footer {
    background: linear-gradient(135deg, #131d10 0%, #2e262f 50%, #12101a 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 72px 0 32px;
    margin-top: 83px;
    position: relative;
    overflow: hidden;
}

.amie-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--amie-orange), transparent);
}

.amie-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(228,127,10,0.02) 100px,
        rgba(229,118,10,0.02) 101px
    );
    animation: amie-drift 30s linear infinite;
}

.amie-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 52px;
    margin-bottom: 37px;
    padding-bottom: 43px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.amie-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
}

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

.amie-footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 18px;
}

.amie-footer-links {
    list-style: none;
    padding: 0;
}

.amie-footer-links li {
    margin-bottom: 7px;
}

.amie-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.amie-footer-links a {
    position: relative;
    transition: all 0.3s ease;
}

.amie-footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--amie-orange);
    transition: width 0.3s ease;
}

.amie-footer-links a:hover {
    color: var(--amie-orange);
    transform: translateX(4px);
}

.amie-footer-links a:hover::before {
    width: 100%;
}

.amie-footer-bottom {
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Scroll Progress Indicator */
.amie-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--amie-orange), var(--amie-orange-light), var(--amie-orange));
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(239,124,10,0.5);
}

.amie-scroll-progress::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    animation: amie-scroll-shine 2s infinite;
}

@keyframes amie-scroll-shine {
    0% { transform: translateX(-20px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(0); opacity: 0; }
}

/* Additional SEO and Performance Optimizations */
.amie-article {
    position: relative;
}

.amie-article::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent, 
        var(--amie-orange) 10%, 
        var(--amie-orange-light) 50%, 
        var(--amie-orange) 90%, 
        transparent
    );
    border-radius: 3px;
    opacity: 0.2;
}

@media (max-width: 768px) {
    .amie-company-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 17px !important;
        gap: 19px !important;
    }
    
    .amie-company-logo {
        width: 140px !important;
        height: 85px !important;
        margin: 0 auto !important;
    }

    .amie-article::before {
        display: none;
    }
}

/* Enhanced Button Styles */
.amie-btn-primary {
    position: relative;
    overflow: hidden;
}

.amie-btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.amie-btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* Enhanced List Styles */
.amie-list li,
.amie-list-ordered li {
    position: relative;
    padding-left: 11px;
}

.amie-list li::before {
    content: '▸';
    position: absolute;
    left: -20px;
    color: var(--amie-orange);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.amie-list li:hover::before {
    transform: translateX(4px);
}

/* Enhanced FAQ Styles */
.amie-faq-item {
    position: relative;
}

.amie-faq-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--amie-orange), var(--amie-orange-light));
    transform: scaleY(0);
    transition: transform 0.4s ease;
    border-radius: 1px 0 0 1px;
}

.amie-faq-item.active::after {
    transform: scaleY(1);
}

/* Enhanced Testimonial Styles */
.amie-testimonial-card {
    position: relative;
}

.amie-testimonial-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(226,127,10,0.1), rgba(10,114,186,0.05));
    border-radius: 9px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.amie-testimonial-card:hover::before {
    opacity: 1;
}

/* Enhanced Rating Styles */
.amie-rating-box {
    position: relative;
}

.amie-rating-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--amie-orange), var(--amie-orange-light), var(--amie-orange));
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.amie-rating-box:hover::before {
    opacity: 0.2;
}

/* Responsive */
@media (max-width: 768px) {
    .amie-ticker-track {
        gap: 22px;
        font-size: 9px;
    }

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

    .amie-nav {
        display: none;
    }

    .amie-hero-title {
        font-size: 36px;
    }

    .amie-hero-subtitle {
        font-size: 16px;
    }

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

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

    .amie-article h2 {
        font-size: 28px;
    }

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

    .amie-company-metrics {
        grid-template-columns: 1fr;
    }

    .amie-company-actions {
        flex-direction: column;
    }

    .amie-testimonial-title,
    .amie-faq-title {
        font-size: 26px;
    }

    .amie-faq-question {
        padding: 21px 22px;
    }

    .amie-faq-answer-content {
        padding: 0 17px 21px;
    }
}

/* ==================
   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: 8px;
    margin-bottom: 11px;
    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: 5px;
}

.fb-btn-primary {
    display: inline-block;
    padding: 13px 23px;
    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: 10px 27px;
    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: 9px 16px;
        font-size: 16px;
    }
}
/* ==================
   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,
    .card-logo,
    .review-logo {
        width: 140px !important;
        min-width: 140px !important;
        height: auto !important;
        min-height: 80px !important;
        max-height: 100px !important;
        padding: 9px !important;
        margin: 0 auto 12px !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: 15px 22px !important;
        text-align: center !important;
        font-size: 14px !important;
        margin-bottom: 11px !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;
    }
}


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

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