/**
 * Skill Farm Finance Career - Inspired by skillfarm.co
 * #0D353E container with white text and premium design
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ========================================
   COLOR PALETTE - SKILL FARM INSPIRED
   ======================================== */
:root {
    --primary-dark: #0D353E;
    --accent-green: #6CFFC4;
    --text-white: #FFFFFF;
    --cream-separator: #F8F6F3;
    --cream-light: #FFFBF7;
    --cream-medium: #F5F0E8;
    --text-dark: #1A1A1A;
    --gold-accent: #FFD700;
    --sffc-space-2xl: 96px;
    --sffc-space-xl: 64px;
    --sffc-space-lg: 40px;
}

/* ========================================
   MAIN CONTAINER & LAYOUT
   ======================================== */
.sffc-main-wrapper {
    position: relative;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, sans-serif;
    overflow-x: hidden;
    padding-bottom: 80px;
}

/* Fixed Background Image - Renaissance Street */
.sffc-main-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../assets/images/designs/vecteezy_empty-city-street-with-renaissance-architecture-and-jeanne_27225035-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    will-change: transform;
}

/* ========================================
   HEADER - MINIMAL & COMPACT
   ======================================== */
.sffc-main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 53, 62, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(108, 255, 196, 0.1);
}

.sffc-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sffc-header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sffc-header-logo {
    width: 32px;
    height: 32px;
    background: transparent;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    position: relative;
    animation: logoFloat 3s ease-in-out infinite;
}

.sffc-header-logo::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.sffc-header-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

/* ========================================
   HERO CONTAINER - PREMIUM REDESIGN
   ======================================== */
.sffc-hero-container {
    background: rgb(27, 59, 47);
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 65px 30px 30px 30px;
    padding: 60px 40px;
    border-radius: 24px;
    z-index: 1;
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.07),
        0 2px 4px rgba(0, 0, 0, 0.07),
        0 4px 8px rgba(0, 0, 0, 0.07),
        0 8px 16px rgba(0, 0, 0, 0.07),
        0 16px 32px rgba(0, 0, 0, 0.07),
        0 32px 64px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

/* Premium geometric pattern overlay */
.sffc-hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(201, 169, 97, 0.03) 35px,
            rgba(201, 169, 97, 0.03) 70px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.01) 35px,
            rgba(255, 255, 255, 0.01) 70px
        );
    pointer-events: none;
}

/* Luxury corner accents */
.sffc-hero-container::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(201, 169, 97, 0.1);
    border-radius: 20px;
    pointer-events: none;
}

/* Premium SVG Illustrations */
.sffc-hero-illustration-left {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 120px;
    height: 120px;
    opacity: 0.08;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgb(201,169,97);stop-opacity:0.5" /><stop offset="100%" style="stop-color:rgb(201,169,97);stop-opacity:0" /></linearGradient></defs><circle cx="100" cy="100" r="80" fill="none" stroke="url(%23grad1)" stroke-width="1" opacity="0.5"/><circle cx="100" cy="100" r="60" fill="none" stroke="url(%23grad1)" stroke-width="1" opacity="0.4"/><circle cx="100" cy="100" r="40" fill="none" stroke="url(%23grad1)" stroke-width="1" opacity="0.3"/><path d="M 50 100 Q 100 50, 150 100 T 250 100" stroke="url(%23grad1)" stroke-width="1" fill="none" opacity="0.6"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: floatLeft 8s ease-in-out infinite;
}

.sffc-hero-illustration-right {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 120px;
    height: 120px;
    opacity: 0.08;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgb(201,169,97);stop-opacity:0" /><stop offset="100%" style="stop-color:rgb(201,169,97);stop-opacity:0.5" /></linearGradient></defs><polygon points="100,20 140,80 200,80 160,120 180,180 100,140 20,180 40,120 0,80 60,80" fill="none" stroke="url(%23grad2)" stroke-width="1" opacity="0.4"/><circle cx="100" cy="100" r="90" fill="none" stroke="url(%23grad2)" stroke-width="0.5" opacity="0.3"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: floatRight 8s ease-in-out infinite;
}

.sffc-hero-illustration-top {
    position: absolute;
    top: 40px;
    right: 50%;
    transform: translateX(50%);
    width: 160px;
    height: 80px;
    opacity: 0.06;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 150"><defs><linearGradient id="grad3" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:rgb(201,169,97);stop-opacity:0.5" /><stop offset="100%" style="stop-color:rgb(201,169,97);stop-opacity:0" /></linearGradient></defs><path d="M0,75 Q75,25 150,75 T300,75" fill="none" stroke="url(%23grad3)" stroke-width="1" opacity="0.5"/><path d="M0,60 Q75,30 150,60 T300,60" fill="none" stroke="url(%23grad3)" stroke-width="0.5" opacity="0.4"/><path d="M0,90 Q75,70 150,90 T300,90" fill="none" stroke="url(%23grad3)" stroke-width="0.5" opacity="0.4"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes floatLeft {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -10px) rotate(5deg); }
    66% { transform: translate(-5px, 5px) rotate(-5deg); }
}

@keyframes floatRight {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-10px, 10px) rotate(-5deg); }
    66% { transform: translate(5px, -5px) rotate(5deg); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.06; transform: translateX(50%) scale(1); }
    50% { opacity: 0.08; transform: translateX(50%) scale(1.05); }
}

.sffc-hero-section {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 0;
    position: relative;
    z-index: 2;
}

/* Decorative elements */
.sffc-hero-decoration-left {
    position: absolute;
    top: 50%;
    left: -100px;
    width: 200px;
    height: 200px;
    transform: translateY(-50%);
    opacity: 0.05;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.5) 0%, transparent 70%);
    filter: blur(40px);
}

.sffc-hero-decoration-right {
    position: absolute;
    top: 50%;
    right: -100px;
    width: 200px;
    height: 200px;
    transform: translateY(-50%);
    opacity: 0.05;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.5) 0%, transparent 70%);
    filter: blur(40px);
}

/* ========================================
   GREETING SECTION - PREMIUM LAYOUT
   ======================================== */
.sffc-greeting-section {
    margin-bottom: 35px;
    opacity: 1;
    animation: slideInFromTop 1s ease-out forwards;
    position: relative;
}

/* Premium divider line */
.sffc-greeting-section::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.5), transparent);
}

/* Skill Farm Brand in Hero - Premium Presentation */
.sffc-skill-farm-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    padding: 20px;
}

/* Ornamental frame around brand */
.sffc-skill-farm-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 100%;
    border: 1px solid rgba(201, 169, 97, 0.1);
    border-left: none;
    border-right: none;
    pointer-events: none;
}

.sffc-brand-logo {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 20px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
    font-weight: 700;
    position: relative;
    animation: logoFloat 3s ease-in-out infinite;
    text-shadow: 
        0 0 20px rgba(201, 169, 97, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sffc-brand-logo::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #C9A961, #E5C980);
    border: 2px solid rgb(27, 59, 47);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(201, 169, 97, 0.6);
}

.sffc-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: -1px;
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sffc-greeting-time {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(201, 169, 97, 0.9);
    margin-bottom: 6px;
    display: block;
    letter-spacing: 0.5px;
}

.sffc-greeting-date {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========================================
   HERO TITLE - ANIMATED TEXT
   ======================================== */
.sffc-welcome-message {
    margin-bottom: 50px;
}

.sffc-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 12px;
    letter-spacing: -1.5px;
    white-space: normal;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sffc-hero-title .letter {
    display: inline-block;
    opacity: 0;
    animation: letterSlideIn 0.1s ease-out forwards;
}

.sffc-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
    margin-bottom: 45px;
    opacity: 0;
    animation: slideInFromBottom 1s ease-out 0.8s forwards;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ========================================
   MODE CARDS - PREMIUM GRID LAYOUT
   ======================================== */
.sffc-tools-section {
    margin-bottom: 0;
    position: relative;
}

/* Abstract decoration behind cards */
.sffc-tools-decoration {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.5) 0%, transparent 50%);
}

.sffc-section-header {
    display: none; /* Hide the original header */
}

.sffc-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sffc-tool-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 16px;
    padding: 24px 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: cardSlideIn 0.6s ease-out forwards;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Hybrid approach - cream base with green accents */
.sffc-tool-card:nth-child(1) { 
    border: 1px solid var(--accent-green);
    background: linear-gradient(135deg, rgba(108, 255, 196, 0.1) 0%, rgba(248, 246, 243, 0.15) 100%);
}

.sffc-tool-card:nth-child(2) { 
    border: 1px solid rgba(248, 246, 243, 0.3);
    background: rgba(248, 246, 243, 0.08);
}

.sffc-tool-card:nth-child(3) { 
    border: 1px solid rgba(248, 246, 243, 0.25);
    background: linear-gradient(135deg, rgba(248, 246, 243, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.sffc-tool-card:nth-child(4) { 
    border: 1px solid rgba(248, 246, 243, 0.3);
    background: rgba(248, 246, 243, 0.06);
}

.sffc-tool-card:nth-child(1) { animation-delay: 0.2s; }
.sffc-tool-card:nth-child(2) { animation-delay: 0.4s; }
.sffc-tool-card:nth-child(3) { animation-delay: 0.6s; }
.sffc-tool-card:nth-child(4) { animation-delay: 0.8s; }

.sffc-tool-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 169, 97, 0.3);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.05),
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(201, 169, 97, 0.2);
}

.sffc-tool-card:nth-child(1):hover { 
    border-color: var(--accent-green);
    background: rgba(108, 255, 196, 0.12);
}

.sffc-tool-card:nth-child(2):hover { 
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.sffc-tool-card:nth-child(3):hover { 
    border-color: rgba(13, 53, 62, 0.8);
    background: rgba(13, 53, 62, 0.4);
}

.sffc-tool-card:nth-child(4):hover { 
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.12);
}

/* Card Number */
.sffc-tool-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Content */
.sffc-tool-content {
    text-align: center;
}

.sffc-tool-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.1));
    border: 1px solid rgba(201, 169, 97, 0.2);
    color: rgba(201, 169, 97, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 24px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sffc-tool-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.2), transparent);
    transition: left 0.5s ease;
}

.sffc-tool-card:hover .sffc-tool-icon::before {
    left: 100%;
}

.sffc-tool-card:hover .sffc-tool-icon {
    transform: scale(1.05) rotate(5deg);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.3), rgba(201, 169, 97, 0.2));
    border-color: rgba(201, 169, 97, 0.4);
}

.sffc-tool-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.sffc-tool-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 36px;
}

.sffc-tool-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.2);
    color: rgba(201, 169, 97, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sffc-tool-action::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.sffc-tool-card:hover .sffc-tool-action {
    background: rgba(201, 169, 97, 0.15);
    border-color: rgba(201, 169, 97, 0.4);
    color: #FFFFFF;
    transform: translateY(-1px);
}

.sffc-tool-card:hover .sffc-tool-action::before {
    width: 200px;
    height: 200px;
}

/* Featured Card */
.sffc-tool-featured {
    background: linear-gradient(135deg, rgba(108, 255, 196, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: var(--accent-green);
}

.sffc-tool-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 12px;
    background: var(--accent-green);
    color: var(--primary-dark);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
}

/* ========================================
   CREAM SEPARATOR
   ======================================== */
.sffc-cream-separator {
    height: 80px;
    background: var(--cream-separator);
    position: relative;
    z-index: 2;
}

/* ========================================
   COMPETITIVE EDGE SECTION - REDESIGNED
   ======================================== */
.sffc-competitive-section {
    background: linear-gradient(180deg, var(--cream-separator) 0%, #FFFFFF 100%);
    padding: 120px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    min-height: 800px;
}

.sffc-competitive-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sffc-competitive-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.sffc-competitive-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: rgba(26, 26, 26, 0.7);
    margin-bottom: 24px;
}

.sffc-coming-soon {
    display: inline-block;
    padding: 16px 32px;
    background: var(--accent-green);
    color: var(--primary-dark);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    margin-bottom: 60px;
    box-shadow: 0 8px 20px rgba(108, 255, 196, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sffc-coming-soon:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(108, 255, 196, 0.4);
    background: #5EE6B5;
}

.sffc-interview-image {
    width: 100%;
    max-width: 1000px;
    height: 600px;
    background: var(--primary-dark);
    border-radius: 24px;
    margin: 0 auto 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Magazine Style Email Opt-in */
.sffc-email-optin {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(13, 53, 62, 0.05);
}

.sffc-optin-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.sffc-optin-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(26, 26, 26, 0.6);
    margin-bottom: 32px;
}

.sffc-email-form {
    display: flex;
    gap: 12px;
}

.sffc-email-input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.sffc-email-submit {
    padding: 16px 24px;
    background: var(--primary-dark);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sffc-email-submit:hover {
    background: #0A2A33;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.sffc-faq-section {
    background: var(--cream-separator);
    padding: 80px 40px 120px;
    position: relative;
    z-index: 2;
    min-height: 400px;
}

.sffc-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.sffc-faq-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -1px;
}

.sffc-faq-item {
    margin-bottom: 24px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sffc-faq-question {
    padding: 20px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    border: none;
    background: white;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.sffc-faq-question:hover {
    background: rgba(13, 53, 62, 0.05);
}

.sffc-faq-answer {
    padding: 0 24px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.6;
    display: none;
}

/* ========================================
   BOTTOM BAR - PREMIUM MARKET PULSE
   ======================================== */
.sffc-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 53, 62, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(108, 255, 196, 0.2);
    padding: 16px 0;
}

.sffc-market-pulse {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.sffc-pulse-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sffc-pulse-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-green);
}

.sffc-pulse-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
}

.sffc-pulse-change {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
}

.sffc-pulse-change.positive {
    color: var(--accent-green);
    background: rgba(108, 255, 196, 0.1);
}

.sffc-pulse-change.negative {
    color: #FF6B6B;
    background: rgba(255, 107, 107, 0.1);
}

.sffc-pulse-divider {
    width: 1px;
    height: 20px;
    background: rgba(108, 255, 196, 0.2);
}

/* Ticker Content Styles */
.sffc-ticker-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    overflow: hidden;
}

.sffc-ticker-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-white);
    transition: opacity 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.sffc-pulse-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-green);
    color: var(--primary-dark);
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

/* Ticker Item Types - Fixed widths */
.sffc-career-ticker {
    flex: 0 0 25%;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

.sffc-market-ticker {
    flex: 0 0 25%;
    transition: opacity 0.3s ease;
}

.sffc-skills-ticker {
    flex: 0 0 25%;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

.sffc-news-ticker {
    flex: 0 0 25%;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

/* ========================================
   SESSION/CHAT STYLES
   ======================================== */
/* ALL session container, sidebar, chat panel, and message styles 
   are handled ENTIRELY by premium-interface.css - NO overrides here whatsoever */

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes letterSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes dotPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Parallax scroll effect */
@media (prefers-reduced-motion: no-preference) {
    .sffc-main-wrapper::before {
        transform: translateZ(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .sffc-hero-container {
        padding: 60px 20px;
        margin: 80px 20px 40px 20px;
    }
    
    .sffc-tools-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .sffc-market-pulse {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .sffc-competitive-section,
    .sffc-faq-section {
        padding: 60px 20px;
    }
    
    .sffc-email-form {
        flex-direction: column;
    }
}

/* Hide elements during loading */
.sffc-tool-glow {
    display: none;
}

.sffc-tools-footer {
    display: none;
}