/* =======================================================
   OATI Score Page Styles — v5 (Premium Trust-Teal & Gold Theme)
   Enhanced with richer colors, gradients, and modern UI elements
   ======================================================= */

/*@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600;700&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Primary Colors - Rich Teal */
    --teal: #0F766E;
    --teal-dark: #0A4D47;
    --teal-darker: #063530;
    --teal-soft: #14948A;
    --teal-light: #E6F5F3;
    --teal-gradient: linear-gradient(135deg, #0F766E 0%, #14948A 50%, #1AB0A5 100%);
    
    /* Gold Accents */
    --gold: #C9A227;
    --gold-dark: #A8841E;
    --gold-light: #E8C766;
    --gold-soft: #FDF7E8;
    --gold-gradient: linear-gradient(135deg, #C9A227 0%, #E8C766 50%, #F4D98A 100%);
    
    /* Neutrals */
    --ink: #0B1E2D;
    --ink-soft: #1E3A3A;
    --muted: #5C7370;
    --muted-light: #8AA3A0;
    --bg-alt: #F1FAF8;
    --bg-dark: #0A1F1C;
    --paper: #FFFFFF;
    --border: #BFE3DD;
    --border-dark: #8FC7BF;
    
    /* Shadows */
    --shadow: 0 14px 34px rgba(15, 118, 110, 0.14);
    --shadow-lift: 0 24px 48px rgba(15, 118, 110, 0.20);
    --shadow-gold: 0 14px 34px rgba(201, 162, 39, 0.25);
    --shadow-soft: 0 8px 24px rgba(15, 118, 110, 0.08);
    
    /* Radius */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    
    /* Typography */
    --mono: "IBM Plex Mono", monospace;
    --serif: "Merriweather", serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========== ANIMATIONS ========== */
@keyframes ring-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(14px, -10px) scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(15, 118, 110, 0.1); }
    50% { box-shadow: 0 0 50px rgba(15, 118, 110, 0.25), 0 0 80px rgba(201, 162, 39, 0.1); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes dot-pulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
        background: #fff;
    }
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ========== BASE ========== */
.oati-section {
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.oati-section-alt {
    background: var(--bg-alt);
    position: relative;
}

.oati-section-alt::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 118, 110, 0.03), transparent 70%);
    pointer-events: none;
}

.section-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--teal), var(--gold), transparent);
    opacity: 0.4;
    margin: 0;
    position: relative;
}

.section-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    background: #fff;
    padding: 0 12px;
    font-size: 0.7rem;
}

/* ========== HERO ========== */
.oati-hero {
    background: linear-gradient(160deg, #F1FAF8 0%, #FFFFFF 50%, #F7FBF9 100%);
    padding: 30px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--border);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.oati-hero .container {
    position: relative;
    z-index: 1;
}

.oati-hero .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(15, 118, 110, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 118, 110, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.oati-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 118, 110, 0.08), transparent 70%);
    animation: drift 14s ease-in-out infinite;
}

.oati-hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08), transparent 72%);
    animation: drift 18s ease-in-out infinite reverse;
}

.oati-hero-inner {
    max-width: 780px;
    position: relative;
    z-index: 1;
    padding-right: 30px;
}

.oati-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFFFFF, var(--gold-soft));
    border: 2px solid var(--gold);
    color: var(--gold-dark);
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 999px;
    margin-bottom: 28px;
    transition: all var(--transition-bounce);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.15);
    position: relative;
}

.oati-badge::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 999px;
    background: var(--gold-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition);
}

.oati-badge:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.25);
    border-color: transparent;
}

.oati-badge:hover::before {
    opacity: 1;
}

.oati-badge i { 
    color: var(--gold);
    font-size: 0.9rem;
}

.oati-hero-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4.8vw, 3.5rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.oati-hero-title .highlight {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-soft) 40%, var(--gold) 80%, var(--gold-light) 100%);
    background-size: 300% 300%;
    animation: gradient-shift 6s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.oati-hero-title span:last-child {
    display: block;
    font-size: 0.45em;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    color: var(--muted);
    margin-top: 8px;
    -webkit-text-fill-color: var(--muted);
    letter-spacing: 0.03em;
}

.oati-hero-sub {
    font-family: var(--mono);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 22px;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--teal-light);
    padding: 6px 18px 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(15, 118, 110, 0.1);
}

.oati-hero-sub i {
    color: var(--gold);
    font-size: 1.1rem;
}

.oati-hero-desc {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 660px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--gold);
}

.oati-hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Premium Button Styles */
.btn-submit {
    background: var(--teal-gradient);
    color: #fff;
    border: none;
    padding: 14px 34px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(15, 118, 110, 0.35);
    transition: all var(--transition-bounce);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-soft) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(15, 118, 110, 0.4);
    color: #fff;
}

.btn-submit:active {
    transform: translateY(0) scale(0.98);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(6px);
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border: 2.5px solid var(--teal);
    padding: 14px 34px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all var(--transition-bounce);
    cursor: pointer;
    position: relative;
}

.btn-outline::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 999px;
    background: var(--teal-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-outline:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(15, 118, 110, 0.25);
    border-color: transparent;
}

.btn-outline:hover::after {
    opacity: 1;
}

.btn-outline i {
    transition: transform 0.3s ease;
}

.btn-outline:hover i {
    transform: translateX(6px);
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--ink);
    border: none;
    padding: 14px 34px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(201, 162, 39, 0.35);
    transition: all var(--transition-bounce);
    cursor: pointer;
}

.btn-gold:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(201, 162, 39, 0.45);
    color: var(--ink);
}

.btn-gold i {
    transition: transform 0.3s ease;
}

.btn-gold:hover i {
    transform: translateX(6px);
}

/* ========== HERO IMAGE - Premium Enhanced ========== */
/* ========== HERO IMAGE - Premium Enhanced with Borders ========== */
.oati-hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
    padding: 8px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

/* Main Image */
.hero-main-image {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 24px 48px rgba(15, 118, 110, 0.18));
    transition: all var(--transition);
    border-radius: var(--radius);
    position: relative;
    z-index: 2;
    display: block;
}

.hero-main-image:hover {
    filter: drop-shadow(0 32px 64px rgba(15, 118, 110, 0.3));
    transform: scale(1.02) rotate(-1deg);
}

/* ===== PREMIUM BORDER EFFECTS ===== */

/* Border 1 - Teal Gradient Border */
.image-border {
    position: absolute;
    border-radius: var(--radius);
    pointer-events: none;
    transition: all var(--transition-bounce);
    z-index: 1;
}

.border-teal {
    inset: -4px;
    border: 3px solid transparent;
    background: linear-gradient(135deg, var(--teal), var(--teal-soft), var(--teal)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-rotate 8s linear infinite;
}

/* Border 2 - Gold Dashed Border */
.border-gold {
    inset: -10px;
    border: 2.5px dashed var(--gold);
    opacity: 0.6;
    animation: border-spin 20s linear infinite;
}

/* Border Animation */
@keyframes border-rotate {
    0% {
        background: linear-gradient(135deg, var(--teal), var(--teal-soft), var(--teal)) border-box;
    }
    25% {
        background: linear-gradient(225deg, var(--teal), var(--gold), var(--teal-soft)) border-box;
    }
    50% {
        background: linear-gradient(315deg, var(--teal-soft), var(--gold), var(--teal)) border-box;
    }
    75% {
        background: linear-gradient(45deg, var(--gold), var(--teal-soft), var(--teal)) border-box;
    }
    100% {
        background: linear-gradient(135deg, var(--teal), var(--teal-soft), var(--teal)) border-box;
    }
}

@keyframes border-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== CORNER ACCENTS ===== */
.corner-accent {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 3;
    opacity: 0;
    transition: all var(--transition-bounce);
}

.hero-image-wrapper:hover .corner-accent {
    opacity: 1;
}

/* Corner Styles */
.top-left {
    top: -2px;
    left: -2px;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    border-radius: 4px 0 0 0;
}

.top-right {
    top: -2px;
    right: -2px;
    border-top: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    border-radius: 0 4px 0 0;
}

.bottom-left {
    bottom: -2px;
    left: -2px;
    border-bottom: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    border-radius: 0 0 0 4px;
}

.bottom-right {
    bottom: -2px;
    right: -2px;
    border-bottom: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    border-radius: 0 0 4px 0;
}

/* Corner Hover Animation */
.hero-image-wrapper:hover .corner-accent {
    animation: corner-pulse 1.5s ease-in-out infinite;
}

@keyframes corner-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* ===== IMAGE GLOW EFFECT ===== */
.image-glow {
    position: absolute;
    inset: -20px;
    border-radius: calc(var(--radius) + 10px);
    background: radial-gradient(circle at center, 
        rgba(15, 118, 110, 0.08) 0%,
        rgba(201, 162, 39, 0.05) 40%,
        transparent 70%);
    z-index: 0;
    opacity: 0.5;
    transition: all var(--transition);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero-image-wrapper:hover .image-glow {
    opacity: 0.8;
    background: radial-gradient(circle at center, 
        rgba(15, 118, 110, 0.15) 0%,
        rgba(201, 162, 39, 0.08) 40%,
        transparent 70%);
}

/* ===== FLOATING BADGES ===== */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
    animation: float-badge 4s ease-in-out infinite;
    transition: all var(--transition);
}

.floating-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Trust Badge */
.trust-badge {
    top: 8%;
    right: -5%;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), var(--gold-soft));
    border-color: var(--gold);
    animation-delay: 0s;
    padding: 10px 20px;
}

.trust-badge i {
    color: var(--gold);
    font-size: 1rem;
}

.trust-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--muted);
    font-family: var(--mono);
}

.trust-badge strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-dark);
    font-family: var(--serif);
}

/* Verified Badge */
.verified-badge {
    bottom: 25%;
    left: -8%;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), var(--teal-light));
    border-color: var(--teal);
    animation-delay: 1.2s;
    padding: 8px 18px;
}

.verified-badge i {
    color: var(--teal);
    font-size: 0.9rem;
}

.verified-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--teal-dark);
    font-family: var(--mono);
}

/* Open Access Badge */
.open-access-badge {
    top: 50%;
    right: -10%;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), #E8F5F0);
    border-color: #3DA39A;
    animation-delay: 2.4s;
    padding: 8px 18px;
}

.open-access-badge i {
    color: #3DA39A;
    font-size: 0.9rem;
}

.open-access-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #2A7A72;
    font-family: var(--mono);
}

/* ===== BADGE ANIMATION ===== */
@keyframes float-badge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ===== DECORATIVE ELEMENTS ===== */
/* Decorative Rings */
.hero-decoration-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(15, 118, 110, 0.12);
    pointer-events: none;
    z-index: 0;
}

.ring-1 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    animation: ring-spin 25s linear infinite;
}

.ring-2 {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    border-color: rgba(201, 162, 39, 0.08);
    animation: ring-spin 35s linear infinite reverse;
}

/* Decorative Dots */
.hero-decoration-dots {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.dots-1 {
    top: -5%;
    right: -8%;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, var(--gold) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.dots-2 {
    bottom: -5%;
    left: -8%;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, var(--teal) 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.2;
    animation: float 10s ease-in-out infinite reverse;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-image-wrapper {
        max-width: 400px;
        padding: 6px;
    }
    
    .floating-badge {
        padding: 6px 14px;
    }
    
    .floating-badge i {
        font-size: 0.8rem;
    }
    
    .floating-badge span {
        font-size: 0.65rem;
    }
    
    .trust-badge {
        top: 8%;
        right: -2%;
        padding: 8px 16px;
    }
    
    .verified-badge {
        bottom: 20%;
        left: -4%;
    }
    
    .open-access-badge {
        top: 45%;
        right: -4%;
    }
    
    .border-gold {
        inset: -8px;
    }
    
    .corner-accent {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        max-width: 320px;
        padding: 5px;
    }
    
    .floating-badge {
        display: none;
    }
    
    .border-gold {
        inset: -6px;
        border-width: 2px;
    }
    
    .border-teal {
        inset: -3px;
        border-width: 2px;
    }
    
    .corner-accent {
        width: 12px;
        height: 12px;
        border-width: 2px !important;
    }
    
    .image-glow {
        inset: -10px;
    }
    
    .hero-decoration-ring,
    .hero-decoration-dots {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-image-wrapper {
        max-width: 260px;
        padding: 4px;
    }
    
    .border-gold {
        inset: -4px;
        border-width: 1.5px;
    }
    
    .border-teal {
        inset: -2px;
        border-width: 1.5px;
    }
    
    .corner-accent {
        width: 10px;
        height: 10px;
        border-width: 1.5px !important;
    }
    
    .image-glow {
        inset: -8px;
    }
}

/* Image Decorative Elements */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15), transparent 70%);
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 118, 110, 0.12), transparent 70%);
    z-index: 1;
    animation: pulse-glow 4s ease-in-out infinite reverse;
}

/* Floating Badges on Image */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
    animation: float-badge 4s ease-in-out infinite;
    transition: all var(--transition);
}

.floating-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.trust-badge {
    top: 8%;
    right: -5%;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), var(--gold-soft));
    border-color: var(--gold);
    animation-delay: 0s;
    padding: 10px 20px;
}

.trust-badge i {
    color: var(--gold);
    font-size: 1rem;
}

.trust-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--muted);
    font-family: var(--mono);
}

.trust-badge strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-dark);
    font-family: var(--serif);
}

.verified-badge {
    bottom: 25%;
    left: -8%;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), var(--teal-light));
    border-color: var(--teal);
    animation-delay: 1.2s;
    padding: 8px 18px;
}

.verified-badge i {
    color: var(--teal);
    font-size: 0.9rem;
}

.verified-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--teal-dark);
    font-family: var(--mono);
}

.open-access-badge {
    top: 50%;
    right: -10%;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), #E8F5F0);
    border-color: #3DA39A;
    animation-delay: 2.4s;
    padding: 8px 18px;
}

.open-access-badge i {
    color: #3DA39A;
    font-size: 0.9rem;
}

.open-access-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #2A7A72;
    font-family: var(--mono);
}

/* Decorative Rings */
.hero-decoration-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(15, 118, 110, 0.12);
    pointer-events: none;
    z-index: 1;
}

.ring-1 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    animation: ring-spin 25s linear infinite;
}

.ring-2 {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    border-color: rgba(201, 162, 39, 0.08);
    animation: ring-spin 35s linear infinite reverse;
}

/* Decorative Dots */
.hero-decoration-dots {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.dots-1 {
    top: -5%;
    right: -8%;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, var(--gold) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.dots-2 {
    bottom: -5%;
    left: -8%;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, var(--teal) 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.2;
    animation: float 10s ease-in-out infinite reverse;
}

/* Hero Pulse Effect */
.hero-pulse {
    position: absolute;
    inset: -10px;
    border-radius: var(--radius);
    background: radial-gradient(circle at center, rgba(15, 118, 110, 0.05), transparent 70%);
    z-index: 0;
    animation: pulse-glow 3s ease-in-out infinite;
}

/* ========== SECTION HEAD ========== */
.oati-section-head {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.oati-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-dark);
    margin-bottom: 14px;
}

.oati-eyebrow::before,
.oati-eyebrow::after {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    display: inline-block;
    border-radius: 2px;
}

.oati-section-head h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--ink);
    margin-bottom: 14px;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.oati-section-head h2 .highlight {
    background: linear-gradient(135deg, var(--teal), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oati-section-desc {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
}

/* ========== WHAT IS OATI SCORE ========== */
.oati-about-text p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.oati-about-text strong {
    color: var(--teal-dark);
    font-family: var(--mono);
    font-weight: 700;
    background: var(--teal-light);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Score Orb - Premium */
.oati-score-orb {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #FFFFFF, #F1FAF8);
    border: 4px solid var(--teal);
    box-shadow: var(--shadow), inset 0 -20px 60px rgba(15, 118, 110, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all var(--transition);
    margin: 0 auto;
}

.oati-score-orb::before {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 3px dashed var(--gold);
    animation: ring-spin 22s linear infinite;
}

.oati-score-orb::after {
    content: '⏺';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.4rem;
    color: var(--gold);
    background: var(--paper);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
    font-size: 0.8rem;
}

.oati-score-orb:hover {
    transform: scale(1.06);
    box-shadow: var(--shadow-lift);
    animation: pulse-glow 2s ease-in-out infinite;
}

.oati-score-orb-value {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--teal);
    line-height: 1;
    background: var(--teal-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oati-score-orb-max {
    font-family: var(--mono);
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 6px;
    letter-spacing: 0.06em;
}

/* ========== WHY RESEARCHERS USE - Premium Cards ========== */
.oati-why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.oati-why-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 18px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 118, 110, 0.08);
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, var(--teal), var(--gold)) border-box;
    border: 2px solid transparent;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Card Hover Overlay */
.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.03), rgba(201, 162, 39, 0.06));
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
    border-radius: var(--radius);
}

.oati-why-card:hover .card-hover-overlay {
    opacity: 1;
}

/* Card Number Badge */
.card-number-badge {
    position: absolute;
    top: 10px;
    right: 12px;
    background: linear-gradient(135deg, var(--teal-light), var(--gold-soft));
    padding: 3px 10px;
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--teal-dark);
    border: 1px solid rgba(15, 118, 110, 0.1);
    transition: all var(--transition);
    z-index: 2;
}

.oati-why-card:hover .card-number-badge {
    background: var(--teal-gradient);
    color: #fff;
    transform: scale(1.1);
    border-color: transparent;
}

.card-number {
    display: block;
}

/* Card Icons - Two Styles */
.oati-why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all var(--transition-bounce);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.15);
    flex-shrink: 0;
}

/* Alternating Icon Styles */
.icon-teal {
    background: var(--teal-gradient);
    color: #fff;
}

.icon-gold {
    background: var(--gold-gradient);
    color: var(--ink);
}

.icon-teal i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.icon-gold i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

/* Icon Pulsing Ring */
.oati-why-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(15, 118, 110, 0.1);
    opacity: 0;
    transition: all var(--transition);
}

.oati-why-card:hover .oati-why-icon::before {
    opacity: 1;
    animation: pulse-ring 1.5s ease-out infinite;
}

.oati-why-card:hover .oati-why-icon {
    transform: translateY(-5px) scale(1.08) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(15, 118, 110, 0.3);
}

.oati-why-card:hover .icon-gold {
    box-shadow: 0 12px 32px rgba(201, 162, 39, 0.35);
}

/* Card Title */
.oati-why-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    font-family: var(--serif);
    position: relative;
    z-index: 1;
    transition: color var(--transition);
    line-height: 1.3;
}

.oati-why-card:hover h3 {
    color: var(--teal-dark);
}

/* Card Description */
.oati-why-card p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Decorative Line */
.card-decorative-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    border-radius: 3px;
    margin: 12px auto 0;
    transition: all var(--transition);
    opacity: 0.4;
}

.oati-why-card:hover .card-decorative-line {
    width: 50px;
    opacity: 1;
}

/* Card Hover Effects - Different for Each Card */
.oati-why-card:nth-child(1):hover {
    border-color: var(--teal);
    transform: translateY(-10px) rotate(1deg);
}

.oati-why-card:nth-child(2):hover {
    border-color: var(--gold);
    transform: translateY(-10px) rotate(-1deg);
}

.oati-why-card:nth-child(3):hover {
    border-color: var(--teal);
    transform: translateY(-10px) rotate(1deg);
}

.oati-why-card:nth-child(4):hover {
    border-color: var(--gold);
    transform: translateY(-10px) rotate(-1deg);
}

.oati-why-card:nth-child(5):hover {
    border-color: var(--teal);
    transform: translateY(-10px) rotate(1deg);
}

/* Card Glow Effect on Hover */
.oati-why-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(15, 118, 110, 0.03), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
    border-radius: var(--radius);
}

.oati-why-card:hover::after {
    opacity: 1;
}

/* Trust Indicator */
.oati-trust-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 28px;
    background: var(--teal-gradient);
    border-radius: 999px;
    color: #fff;
    font-family: var(--mono);
    font-size: 0.82rem;
    font-weight: 600;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.25);
    position: relative;
    overflow: hidden;
}

.oati-trust-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.oati-trust-indicator i {
    font-size: 1.1rem;
    color: var(--gold-light);
    animation: pulse-glow 2s ease-in-out infinite;
}

.trust-dots {
    display: flex;
    gap: 5px;
    margin-left: 4px;
}

.trust-dots .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: dot-pulse 1.5s ease-in-out infinite;
}

.trust-dots .dot:nth-child(2) { animation-delay: 0.2s; }
.trust-dots .dot:nth-child(3) { animation-delay: 0.4s; }
.trust-dots .dot:nth-child(4) { animation-delay: 0.6s; }
.trust-dots .dot:nth-child(5) { animation-delay: 0.8s; }

/* ========== ASSESSMENT AREAS ========== */
.oati-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.oati-area-pill {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 24px;
    font-weight: 600;
    color: var(--ink);
    font-size: 0.95rem;
    transition: all var(--transition-bounce);
    cursor: default;
    box-shadow: var(--shadow-soft);
}

.oati-area-pill:hover {
    background: var(--teal-gradient);
    border-color: var(--teal);
    transform: translateX(8px) scale(1.02);
    box-shadow: var(--shadow-lift);
    color: #fff;
}

.oati-area-pill i {
    color: #fff;
    background: var(--teal-gradient);
    font-size: 0.9rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.2);
}

.oati-area-pill:hover i {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(15, 118, 110, 0.3);
}

.oati-areas-note {
    text-align: center;
    color: var(--muted);
    margin-top: 36px;
    font-size: 0.98rem;
    font-style: italic;
    padding: 20px 28px;
    background: var(--gold-soft);
    border-radius: var(--radius-sm);
    border-left: 5px solid var(--gold);
    box-shadow: var(--shadow-soft);
}

.oati-areas-note i {
    color: var(--gold);
    margin-right: 8px;
}

/* ========== CHECK YOUR SCORE WIDGET ========== */
.oati-check-score {
    max-width: 560px;
    margin: 0 auto 42px;
    background: var(--paper);
    border: 3px solid var(--teal);
    border-radius: var(--radius);
    padding: 32px 36px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
}

.oati-check-score::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: calc(var(--radius) + 6px);
    background: var(--teal-gradient);
    opacity: 0.1;
    z-index: -1;
}

.oati-check-score:hover {
    box-shadow: var(--shadow-lift);
    transform: translateY(-4px);
}

.oati-check-score label {
    display: block;
    font-family: var(--mono);
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 16px;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.oati-check-score label i {
    color: var(--gold);
}

.oati-check-score-row {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.oati-check-score-row input[type="number"] {
    width: 170px;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--mono);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    outline: none;
    background: var(--bg-alt);
    transition: all var(--transition);
}

.oati-check-score-row input[type="number"]:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.12);
    transform: scale(1.03);
    background: #fff;
}

.oati-check-score-row input[type="number"]::-webkit-inner-spin-button,
.oati-check-score-row input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.oati-check-score-row input[type="number"] {
    -moz-appearance: textfield;
}

.oati-check-result {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--muted);
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--bg-alt);
    transition: all var(--transition-bounce);
    min-width: 130px;
    border: 2px solid transparent;
}

.oati-check-result.is-active {
    color: #fff;
    background: var(--teal-gradient);
    border-color: var(--teal);
    animation: scale-in 0.3s ease;
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.3);
}

.oati-check-result.is-warning {
    color: var(--ink);
    background: var(--gold-soft);
    border-color: var(--gold);
    animation: scale-in 0.3s ease;
}

.oati-check-result.is-danger {
    color: #fff;
    background: linear-gradient(135deg, #B33A3A, #D9534F);
    border-color: #B33A3A;
    animation: scale-in 0.3s ease;
}

/* ========== RATING SCALE TABLE ========== */
.oati-table-wrap {
    max-width: 680px;
    margin: 0 auto;
}

.oati-scale-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--border);
}

.oati-scale-table thead th {
    background: linear-gradient(135deg, var(--ink), var(--teal-dark));
    color: #fff;
    text-align: left;
    padding: 20px 26px;
    font-family: var(--mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.oati-scale-table thead th:last-child {
    border-left: 3px solid var(--gold);
}

.oati-scale-table thead th i {
    margin-right: 8px;
    color: var(--gold);
}

.oati-scale-table tbody td {
    padding: 16px 26px;
    border-bottom: 1px solid var(--border);
    font-size: 0.98rem;
    color: var(--ink);
}

.oati-scale-table tbody td:first-child {
    font-family: var(--mono);
    font-weight: 600;
    color: var(--ink-soft);
}

.oati-scale-table tbody tr {
    transition: all var(--transition);
    cursor: pointer;
}

.oati-scale-table tbody tr:hover {
    background: var(--gold-soft) !important;
    transform: scale(1.01);
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.12);
}

.oati-scale-table tbody tr:nth-child(even) {
    background: #F7FCFB;
}

.oati-scale-table tbody tr:last-child td {
    border-bottom: none;
}

/* Row Highlight */
.oati-row-highlight {
    background: var(--gold-soft) !important;
    box-shadow: 0 0 0 3px var(--gold), 0 8px 24px rgba(201, 162, 39, 0.2);
    transform: scale(1.02);
    transition: all 0.4s ease;
}

.oati-row-highlight td {
    font-weight: 600 !important;
}

.oati-rating-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
    transition: all var(--transition);
}

.oati-rating-tag:hover {
    transform: scale(1.06);
}

.rs-outstanding .oati-rating-tag   { background: var(--teal-gradient); }
.rs-excellent .oati-rating-tag     { background: linear-gradient(135deg, #14948A, #1AB0A5); }
.rs-very-good .oati-rating-tag     { background: linear-gradient(135deg, #3DA39A, #5CB8B0); }
.rs-good .oati-rating-tag          { background: var(--gold-gradient); color: var(--ink); box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08); }
.rs-satisfactory .oati-rating-tag  { background: linear-gradient(135deg, #B98A1E, #D4A833); }
.rs-developing .oati-rating-tag    { background: linear-gradient(135deg, #C2730F, #E08A1A); }
.rs-review .oati-rating-tag        { background: linear-gradient(135deg, #B33A3A, #D9534F); }

.oati-disclaimer {
    max-width: 680px;
    margin: 32px auto 0;
    text-align: center;
    font-size: 0.88rem;
    color: var(--muted);
    font-style: italic;
    padding: 18px 24px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.oati-disclaimer i {
    color: var(--teal);
    font-size: 1.1rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .oati-why-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }
    
    .oati-why-card {
        padding: 24px 14px 20px;
        min-height: 240px;
    }
    
    .oati-why-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .oati-why-card h3 {
        font-size: 0.88rem;
    }
    
    .oati-why-card p {
        font-size: 0.75rem;
    }
}

@media (max-width: 992px) {
    .oati-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .oati-hero-inner {
        text-align: center;
        margin-bottom: 40px;
        padding-right: 0;
    }
    
    .oati-hero-desc {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
    
    .oati-hero-actions {
        justify-content: center;
    }
    
    .oati-about-text {
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .oati-why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .oati-why-card {
        min-height: 260px;
        padding: 28px 18px 24px;
    }
    
    .oati-hero-image .floating-badge {
        display: none;
    }
    
    .hero-image-wrapper::before,
    .hero-image-wrapper::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .oati-section {
        padding: 50px 0;
    }
    
    .oati-hero {
        padding: 60px 0 40px;
    }
    
    .oati-hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .oati-hero-sub {
        font-size: 0.9rem;
        padding: 4px 14px 4px 10px;
    }
    
    .oati-hero-desc {
        font-size: 0.95rem;
        padding: 14px 16px;
    }
    
    .hero-main-image {
        max-width: 280px;
    }
    
    .oati-score-orb {
        width: 170px;
        height: 170px;
    }
    
    .oati-score-orb-value {
        font-size: 2.2rem;
    }
    
    .oati-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .oati-why-card {
        min-height: 240px;
        padding: 24px 16px 20px;
    }
    
    .oati-why-icon {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
    
    .oati-areas-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .oati-check-score-row {
        flex-direction: column;
    }
    
    .oati-check-score-row input[type="number"] {
        width: 100%;
        max-width: 200px;
    }
    
    .oati-eyebrow::before,
    .oati-eyebrow::after {
        display: none;
    }
    
    .oati-scale-table thead th,
    .oati-scale-table tbody td {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .oati-check-score {
        padding: 24px 20px;
    }
    
    .oati-trust-indicator {
        font-size: 0.75rem;
        padding: 12px 20px;
        flex-wrap: wrap;
        gap: 10px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .oati-hero {
        padding: 40px 0 30px;
    }
    
    .oati-hero-title {
        font-size: 1.6rem;
    }
    
    .oati-hero-title span:last-child {
        font-size: 0.5em;
    }
    
    .oati-hero-sub {
        font-size: 0.8rem;
        padding: 4px 12px 4px 8px;
        gap: 6px;
    }
    
    .oati-hero-sub i {
        font-size: 0.9rem;
    }
    
    .oati-hero-desc {
        font-size: 0.85rem;
        padding: 12px 14px;
        margin-bottom: 24px;
    }
    
    .oati-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn-submit,
    .btn-outline,
    .btn-gold {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    .hero-main-image {
        max-width: 220px;
    }
    
    .oati-badge {
        font-size: 0.6rem;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .oati-badge i {
        font-size: 0.7rem;
    }
    
    .oati-why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    
    .oati-why-card {
        min-height: 200px;
        padding: 20px 12px 16px;
    }
    
    .oati-why-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .oati-why-card h3 {
        font-size: 0.8rem;
    }
    
    .oati-why-card p {
        font-size: 0.7rem;
        line-height: 1.4;
    }
    
    .card-number-badge {
        font-size: 0.55rem;
        padding: 2px 8px;
        top: 8px;
        right: 8px;
    }
    
    .card-decorative-line {
        width: 20px;
        margin-top: 8px;
    }
    
    .oati-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .oati-scale-table thead th,
    .oati-scale-table tbody td {
        padding: 10px 12px;
        font-size: 0.75rem;
    }
    
    .oati-check-score {
        padding: 20px 16px;
    }
    
    .oati-areas-note {
        padding: 16px 20px;
        font-size: 0.9rem;
    }
    
    .oati-trust-indicator {
        font-size: 0.65rem;
        padding: 10px 16px;
        flex-direction: column;
        gap: 6px;
        border-radius: var(--radius);
    }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}