@charset "UTF-8";
/* ═══════════════════════════════════════════════════════════════════════════
   FAQ PREMIUM SECTION - Modern UI/UX 2025
   ═══════════════════════════════════════════════════════════════════════════ */
.faqPremiumSection {
    --faq-primary: #0066FF;
    --faq-primary-light: #3385FF;
    --faq-primary-dark: #0052CC;
    --faq-accent: #10B981;
    --faq-card-bg: #ffffff;
    --faq-border: rgba(0, 102, 255, 0.08);
    --faq-text-primary: #0a1628;
    --faq-text-secondary: #4a5568;
    --faq-text-muted: #718096;
    --faq-radius: 20px;
    --faq-radius-sm: 14px;
    --faq-shadow: 0 4px 24px rgba(0, 102, 255, 0.06);
    --faq-shadow-hover: 0 8px 32px rgba(0, 102, 255, 0.12);
    
    width: 100%;
    padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 40px);
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 35%, #f0f4ff 70%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

/* Background decoration - full width, no visible edges */
.faqPremiumSection::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(0, 102, 255, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.faqPremiumInner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Header
   ───────────────────────────────────────────────────────────────────────────── */
.faqPremiumHeader {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
}

.faqEyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 9px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    box-shadow:
        0 6px 18px rgba(0, 102, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 18px;
}

.faqEyebrowIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--faq-primary) 0%, var(--faq-primary-dark) 100%);
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 3px 8px rgba(0, 102, 255, 0.35);
}

.faqEyebrowText {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--faq-primary-dark);
}

.faqPremiumTitle {
    font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(27px, 3.6vw, 38px);
    font-weight: 800;
    line-height: 1.18;
    color: var(--faq-text-primary);
    letter-spacing: -0.5px;
    margin: 0 0 16px 0;
}

.faqTitleAccent {
    background: linear-gradient(120deg, var(--faq-primary) 0%, var(--faq-primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.faqPremiumSubtitle {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    color: var(--faq-text-secondary);
    margin: 0;
    max-width: min(100%, var(--lead-measure, 1040px));
    margin-inline: auto;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Accordion Container
   ───────────────────────────────────────────────────────────────────────────── */
.faqAccordionContainer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Accordion Item
   ───────────────────────────────────────────────────────────────────────────── */
.faqAccordionItem {
    background: var(--faq-card-bg);
    border: 1px solid var(--faq-border);
    border-radius: var(--faq-radius);
    box-shadow: var(--faq-shadow);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.faqAccordionItem:hover {
    border-color: rgba(0, 102, 255, 0.15);
    box-shadow: var(--faq-shadow-hover);
}

.faqAccordionItem.is-open {
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.1);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Accordion Header (Button)
   ───────────────────────────────────────────────────────────────────────────── */
.faqAccordionHeader {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: clamp(22px, 3.5vw, 32px) clamp(24px, 4vw, 36px);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.faqAccordionHeader:hover {
    background: rgba(0, 102, 255, 0.02);
}

.faqQuestionWrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.faqQuestionIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 102, 255, 0.04) 100%);
    border-radius: 14px;
    color: var(--faq-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faqAccordionItem.is-open .faqQuestionIcon {
    background: linear-gradient(135deg, var(--faq-primary) 0%, var(--faq-primary-dark) 100%);
    color: white;
}

.faqQuestionText {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(17px, 2.2vw, 20px);
    font-weight: 600;
    color: var(--faq-text-primary);
    line-height: 1.5;
    letter-spacing: -0.2px;
}

/* Toggle Icon */
.faqAccordionToggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 102, 255, 0.06);
    border-radius: 12px;
    color: var(--faq-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faqAccordionItem.is-open .faqAccordionToggle {
    background: var(--faq-primary);
    color: white;
    transform: rotate(180deg);
}

.faqIconPlus,
.faqIconMinus {
    position: absolute;
    transition: opacity 0.2s ease, transform 0.3s ease;
}

.faqAccordionToggle {
    position: relative;
}

.faqIconMinus {
    opacity: 0;
}

.faqAccordionItem.is-open .faqIconPlus {
    opacity: 0;
    transform: rotate(90deg);
}

.faqAccordionItem.is-open .faqIconMinus {
    opacity: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Accordion Content
   ───────────────────────────────────────────────────────────────────────────── */
.faqAccordionContent {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faqAnswerInner {
    padding: 8px clamp(24px, 4vw, 36px) clamp(28px, 4vw, 40px);
    padding-left: calc(clamp(24px, 4vw, 36px) + 48px + 20px); /* Align with question text */
}

.faqAnswerInner p {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.85;
    color: var(--faq-text-secondary);
    margin: 0 0 20px 0;
    letter-spacing: 0.1px;
}

.faqAnswerInner p:last-child {
    margin-bottom: 0;
}

.faqAnswerInner a {
    color: var(--faq-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: inherit;
    transition: color 0.2s ease;
    margin: 0 4px;
}

.faqAnswerInner a:hover {
    color: var(--faq-primary-dark);
    text-decoration: underline;
}

/* Animated underline link effect */
@keyframes lineGrow {
    0%, 70% {
        width: 0;
        left: 0;
        opacity: 0;
    }
    75% {
        width: 0;
        left: 0;
        opacity: 1;
    }
    85% {
        width: 100%;
        left: 0;
        opacity: 1;
    }
    95% {
        width: 100%;
        left: 0;
        opacity: 1;
    }
    100% {
        width: 0;
        left: 100%;
        opacity: 0;
    }
}

.faqAnimatedLink {
    position: relative;
    display: inline-block;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: 600 !important;
    letter-spacing: inherit !important;
}

.faqAnimatedLink::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--faq-primary) 0%, var(--faq-primary-dark) 100%);
    border-radius: 2px;
    animation: lineGrow 4s ease-in-out infinite;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Bottom CTA
   ───────────────────────────────────────────────────────────────────────────── */
.faqBottomCTA {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: clamp(36px, 5vw, 52px);
}

.faqMoreButton {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--faq-primary) 0%, var(--faq-primary-dark) 100%);
    color: white;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-decoration: none;
    border-radius: 14px;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.faqMoreButton::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faqMoreButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.35);
}

.faqMoreButton:hover::before {
    opacity: 1;
}

.faqMoreText {
    position: relative;
    z-index: 1;
}

.faqMoreArrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.faqMoreButton:hover .faqMoreArrow {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
}

/* Premium Shimmer Effect - Hover Only */
.faqMoreButton::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transform: skewX(-20deg);
    transition: none;
    pointer-events: none;
    z-index: 2;
}

.faqMoreButton:hover::after {
    animation: faqShimmerSweep 0.7s ease-out forwards;
}

@keyframes faqShimmerSweep {
    0% { left: -100%; opacity: 1; }
    100% { left: 150%; opacity: 1; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Responsive Design
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .faqQuestionIcon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
    
    .faqQuestionIcon svg {
        width: 20px;
        height: 20px;
    }
    
    .faqAccordionToggle {
        width: 36px;
        height: 36px;
    }
    
    .faqAnswerInner {
        padding-left: clamp(20px, 3vw, 28px);
    }
    
    .faqQuestionText {
        font-size: clamp(16px, 2vw, 18px);
    }
    
    .faqPremiumTitle {
        font-size: clamp(25px, 4.6vw, 34px);
    }
    
    .faqBottomCTA {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .faqPremiumSection {
        padding: 50px 16px;
    }
    
    .faqQuestionWrapper {
        gap: 12px;
    }
    
    .faqQuestionIcon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    
    .faqQuestionIcon svg {
        width: 18px;
        height: 18px;
    }
    
    .faqQuestionText {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .faqAccordionHeader {
        padding: 18px 16px;
        gap: 14px;
    }
    
    .faqAccordionToggle {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
    
    .faqAnswerInner {
        padding: 8px 16px 24px;
    }
    
    .faqAnswerInner p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 16px;
    }
    
    .faqPremiumSubtitle {
        font-size: 16px;
    }
    
    .faqEyebrow {
        padding: 7px 15px 7px 8px;
    }
    
    .faqEyebrowText {
        font-size: 14px;
        letter-spacing: 1.1px;
    }
    
    .faqContactButton {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 350px) {
    .faqPremiumTitle {
        font-size: 23px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .faqAccordionItem,
    .faqAccordionContent,
    .faqAccordionToggle,
    .faqQuestionIcon,
    .faqMoreButton,
    .faqMoreArrow {
        transition: none;
    }
    
    .faqAnimatedLink::after {
        animation: none;
    }
    
    .faqMoreButton:hover::after {
        animation: none;
    }
}
/* ═══════════════════════════════════════════════════════════════════════════
   STUDY ANYWHERE SECTION - Premium Modern UI/UX 2025
   ═══════════════════════════════════════════════════════════════════════════ */
.studyAnywhereSection {
    --study-primary: #7C3AED;
    --study-primary-light: #A78BFA;
    --study-primary-dark: #6D28D9;
    --study-accent: #F59E0B;
    --study-bg: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #ede9fe 100%);
    --study-glass: rgba(255, 255, 255, 0.88);
    --study-glass-border: rgba(255, 255, 255, 0.95);
    --study-shadow-soft: 0 4px 24px rgba(124, 58, 237, 0.08);
    --study-shadow-medium: 0 12px 40px rgba(124, 58, 237, 0.12);
    --study-shadow-strong: 0 20px 60px rgba(124, 58, 237, 0.15);
    --study-text-primary: #1e1b4b;
    --study-text-secondary: #4c4669;
    --study-radius: 24px;
    --study-radius-sm: 14px;
    
    width: 100%;
    padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 40px);
    background: var(--study-bg);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.studyAnywhereSection::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.studyAnywhereInner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Content Wrapper
   ───────────────────────────────────────────────────────────────────────────── */
.studyContentWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(22px, 3vw, 30px);
}

/* Eyebrow badge */
.studyEyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 9px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    box-shadow:
        0 6px 18px rgba(109, 40, 217, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.studyEyebrowIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--study-primary) 0%, var(--study-primary-dark) 100%);
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 3px 8px rgba(109, 40, 217, 0.35);
}

.studyEyebrowText {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--study-primary-dark);
}

/* Heading */
.studyHeading {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.studyTitle {
    font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.5px;
    color: var(--study-text-primary);
    margin: 0;
}

.studyTitleAccent {
    background: linear-gradient(120deg, #7C3AED 0%, #8B5CF6 55%, #6D28D9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.studyIntro {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(16.5px, 1.8vw, 18px);
    line-height: 1.72;
    letter-spacing: 0.1px;
    color: var(--study-text-secondary);
    margin: 0;
    max-width: 58ch;
}

/* Feature cards grid */
.studyGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.studyCardItem {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow:
        0 10px 28px rgba(109, 40, 217, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, border-color 0.25s ease-out;
}

.studyCardItem:hover {
    transform: translateY(-3px);
    border-color: rgba(196, 181, 253, 0.9);
    box-shadow:
        0 16px 36px rgba(109, 40, 217, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.studyCardIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--study-primary) 0%, var(--study-primary-dark) 100%);
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 6px 16px rgba(109, 40, 217, 0.28);
}

.studyCardTitle {
    font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.1px;
    line-height: 1.3;
    color: var(--study-text-primary);
}

.studyCardText {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.1px;
    color: var(--study-text-secondary);
}

/* CTA Button */
.studyCTAButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 16px 32px;
    margin-top: 12px;
    background: linear-gradient(135deg, var(--study-primary) 0%, var(--study-primary-dark) 100%);
    color: white;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-decoration: none;
    border-radius: 14px;
    border: none;
    box-shadow: 
        0 8px 24px rgba(124, 58, 237, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    width: fit-content;
    cursor: pointer;
}

.studyCTAButton::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.studyCTAButton:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 14px 36px rgba(124, 58, 237, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.studyCTAButton:hover::before {
    opacity: 1;
}

.studyCTAButton svg {
    transition: transform 0.3s ease;
}

.studyCTAButton:hover svg {
    transform: translateX(4px);
}

/* Premium Shimmer Effect - Hover Only */
.studyCTAButton::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transform: skewX(-20deg);
    transition: none;
    pointer-events: none;
    z-index: 2;
}

.studyCTAButton:hover::after {
    animation: studyShimmerSweep 0.7s ease-out forwards;
}

@keyframes studyShimmerSweep {
    0% { left: -100%; opacity: 1; }
    100% { left: 150%; opacity: 1; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Image Wrapper with Glass Frame
   ───────────────────────────────────────────────────────────────────────────── */
.studyImageWrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.studyImageGlow {
    position: absolute;
    width: 85%;
    height: 85%;
    background: linear-gradient(135deg, var(--study-primary) 0%, var(--study-accent) 100%);
    border-radius: var(--study-radius);
    filter: blur(50px);
    opacity: 0.2;
    animation: studyGlowPulse 4s ease-in-out infinite;
}

@keyframes studyGlowPulse {
    0%, 100% { opacity: 0.15; transform: scale(0.95); }
    50% { opacity: 0.25; transform: scale(1); }
}

.studyImageFrame {
    position: relative;
    background: var(--study-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--study-radius);
    padding: 12px;
    border: 1px solid var(--study-glass-border);
    box-shadow: 
        var(--study-shadow-strong),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: box-shadow 0.4s ease;
}

.studyImageFrame:hover {
    box-shadow: 
        0 24px 50px rgba(124, 58, 237, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.studyImageFrame img {
    display: block;
    width: 100%;
    max-width: 580px;
    height: 420px;
    border-radius: calc(var(--study-radius) - 8px);
    object-fit: cover;
    object-position: center 20%;
}

/* Floating Badge - Premium UI/UX */
.studyFloatingBadge {
    position: absolute;
    bottom: 20px;
    left: -10px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px 14px 14px;
    background: linear-gradient(140deg, #0ea5e9, #0284c7, #0369a1);
    color: white;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    line-height: 1.5;
    border-radius: 100px;
    box-shadow: 
        0 4px 12px rgba(14, 165, 233, 0.3),
        0 8px 28px rgba(14, 165, 233, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    animation: studyBadgeFloat 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes studyBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.studyFloatingBadge span {
    padding-right: 4px;
}

.studyFloatingBadge svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-sizing: content-box;
    color: #0284c7;
    stroke: #d97706;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Responsive Design
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .studyAnywhereInner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .studyImageWrapper {
        order: -1;
    }
    
    .studyContentWrapper {
        align-items: center;
    }
    
    .studyHeading {
        align-items: center;
    }
    
    .studyIntro {
        max-width: 64ch;
    }
    
    .studyGrid {
        max-width: 640px;
        margin: 0 auto;
        text-align: left;
    }
    
    .studyFloatingBadge {
        left: 10px;
        bottom: 15px;
    }
}

@media (max-width: 960px) {
    .studyImageFrame img {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .studyAnywhereSection {
        padding: 50px 16px;
    }
    
    .studyImageFrame {
        padding: 8px;
    }
    
    .studyImageFrame img {
        height: 280px;
    }
    
    .studyTitle {
        font-size: clamp(25px, 6.5vw, 30px);
        letter-spacing: -0.4px;
    }
    
    .studyIntro {
        font-size: 16px;
        line-height: 1.65;
    }
    
    .studyEyebrow {
        padding: 7px 15px 7px 8px;
    }
    
    .studyEyebrowText {
        font-size: 14px;
        letter-spacing: 1.1px;
    }
    
    .studyGrid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .studyCardItem {
        display: grid;
        grid-template-columns: 36px 1fr;
        grid-template-rows: auto auto;
        column-gap: 12px;
        row-gap: 3px;
        align-items: start;
        padding: 14px 15px;
        border-radius: 14px;
    }
    
    .studyCardIcon {
        grid-row: 1 / 3;
        width: 36px;
        height: 36px;
        margin-bottom: 0;
        margin-top: 2px;
        border-radius: 11px;
    }
    
    .studyCardTitle {
        font-size: 17px;
    }
    
    .studyCardText {
        font-size: 16px;
    }
    
    .studyFloatingBadge {
        padding: 10px 16px;
        font-size: 14px;
        left: 5px;
        bottom: 10px;
    }
    
    .studyCTAButton {
        width: 100%;
        max-width: 320px;
        box-sizing: border-box;
        padding: 14px 24px;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .studyImageGlow,
    .studyFloatingBadge,
    .studyCTAButton::after {
        animation: none;
    }
    
    .studyCardItem:hover,
    .studyCTAButton:hover {
        transform: none;
    }
}
