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

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-100: #f7f7f7;
    --gray-200: #e6e6e6;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --accent: #0066ff;
    --accent-hover: #0052cc;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --max-width: 1200px;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-mono: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", monospace;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

/* Prevent all containers from overflowing */
.container,
.nav-container,
section,
div {
    max-width: 100%;
}

/* Prevent images and media from overflowing */
img,
video,
iframe,
svg {
    max-width: 100%;
    height: auto;
}

/* Prevent tables from overflowing */
table {
    max-width: 100%;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--gray-200);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.375rem;
    color: var(--black);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    font-weight: 500;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--black);
}

.nav-links a.active {
    color: var(--accent);
    font-weight: 600;
}

.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--accent-hover);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.2);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 0.25rem;
    display: none;
}

/* Add a pseudo-element to bridge the gap between dropdown toggle and content */
.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.25rem;
    z-index: 1000;
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border-radius: 6px;
    margin: 0.25rem;
}

.dropdown-content a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Mobile hamburger menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--black);
    transition: all 0.3s linear;
    border-radius: 1px;
}

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

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

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

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.03) 0%, transparent 70%);
    animation: heroFloat 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(1deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: 1rem;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--accent), #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Promotion Banner Styles */
.hero-promotion-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 2rem auto 3rem;
    max-width: 600px;
    color: white;
    text-align: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    animation: promotional-pulse 2s infinite;
}

.promotion-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.promotion-emoji {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.promotion-timer {
    opacity: 0.9;
    font-size: 0.875rem;
}

/* Animation for promotion banner */
@keyframes promotional-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 25px rgba(102, 126, 234, 0.3);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Empathy Deep-Dive Section */
.empathy-section {
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.empathy-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.empathy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.empathy-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.problem-layers {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid rgba(0, 102, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.05);
}

.problem-item:hover {
    background: var(--white);
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.15);
}

.problem-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
    transition: transform 0.3s ease;
}

.problem-item:hover .problem-icon {
    transform: scale(1.1) rotate(5deg);
}

.problem-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.problem-item p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 1rem;
}

.pull-quote {
    text-align: center;
    margin-top: 2rem;
}

.pull-quote blockquote {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    font-style: italic;
    position: relative;
    padding: 0 2rem;
}

.pull-quote blockquote::before,
.pull-quote blockquote::after {
    content: '"';
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.5;
}

.empathy-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.08);
    border: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #00c6ff);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.stat-source {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-style: italic;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.08);
    position: relative;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.15);
    border-color: var(--accent);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(45deg, var(--accent), #00c6ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-name {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Guide & Plan Section - 3-Shot Structure */
.guide-plan-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    position: relative;
    overflow: hidden;
}

.guide-plan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 198, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.guide-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.shots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 2rem 0;
}

.shot-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.06);
    border: 2px solid rgba(0, 102, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.shot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent), #00c6ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.shot-card:hover::before {
    transform: scaleX(1);
}

.shot-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 102, 255, 0.2);
    border-color: var(--accent);
}

.shot-card[data-shot="1"]:hover {
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
}

.shot-card[data-shot="2"]:hover {
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
}

.shot-card[data-shot="3"]:hover {
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.15);
}

.shot-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--accent), #00c6ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    color: white;
    opacity: 0.9;
}

.shot-card[data-shot="2"] .shot-number {
    background: linear-gradient(135deg, #10b981, #059669);
}

.shot-card[data-shot="3"] .shot-number {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.shot-content {
    position: relative;
    z-index: 1;
}

.shot-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.shot-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.shot-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.shot-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}

.shot-card:hover .feature-tag {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 198, 255, 0.05));
    border-color: var(--accent);
    color: var(--accent);
}

.plan-cta {
    margin-top: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--accent) 0%, #004bb5 100%);
    border-radius: 24px;
    padding: 4rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.plan-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.plan-cta h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.plan-cta p {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* AI Prompts CTA Section */
.ai-prompts-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8faff 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.ai-prompts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 102, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.prompts-cta-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.prompts-categories {
    margin: 3rem 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.category-item {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.06);
    border: 2px solid rgba(0, 102, 255, 0.08);
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.12);
    border-color: var(--accent);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.category-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.prompts-cta-action {
    text-align: center;
    margin-top: 3rem;
}

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

/* Stakes & Urgency Section with Social Proof */
.stakes-urgency-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 8rem 2rem;
    color: var(--gray-900);
    position: relative;
    overflow: hidden;
}

.stakes-urgency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 102, 255, 0.03) 0%, transparent 50%), 
                radial-gradient(circle at 70% 80%, rgba(0, 102, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.stakes-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.urgency-header {
    text-align: center;
    margin-bottom: 4rem;
}

.urgency-label {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    border: 2px solid var(--accent);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urgency-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.urgency-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.stakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 2rem 0 3rem;
}

.stake-card {
    background: var(--white);
    border: 2px solid rgba(0, 102, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.08);
}

.stake-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.15);
}

.stake-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stake-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 1rem;
    text-shadow: none;
}

.stake-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.stake-detail {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-style: italic;
}

.social-proof-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 4rem 3rem;
    margin-top: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-proof-header {
    text-align: center;
    margin-bottom: 3rem;
}

.social-proof-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.success-story {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.success-story:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.story-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.story-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.5;
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    font-family: serif;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.success-story .author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(45deg, var(--accent), #00c6ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-name {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.story-result {
    display: flex;
    justify-content: flex-end;
}

.result-badge {
    background: linear-gradient(45deg, var(--success), #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.trust-indicators {
    margin: 4rem 0 3rem;
    text-align: center;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-stat {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.urgency-cta {
    text-align: center;
}

.cta-urgency-box {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 154, 158, 0.2) 100%);
    border: 2px solid #ff6b6b;
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-urgency-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b, #ff9a9e, #fad0c4, #ff6b6b);
    background-size: 400% 400%;
    border-radius: 20px;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.urgency-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #ff6b6b;
}

.timer-icon {
    font-size: 1.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

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

.timer-text {
    font-size: 1.1rem;
}

.btn-urgency {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.btn-urgency:hover {
    background: linear-gradient(135deg, #ff5252 0%, #e53e3e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.guarantee-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Success Vision & Final CTA Section */
.success-vision-section {
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.success-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.vision-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vision-header {
    text-align: center;
    margin-bottom: 3rem;
}

.vision-label {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    border-radius: 100px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.vision-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.vision-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
}

.transformation-showcase {
    margin: 3rem 0;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
}

.before-state,
.after-state {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.before-state {
    border-color: rgba(0, 102, 255, 0.1);
}

.before-state::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #60a5fa);
}

.after-state {
    border-color: rgba(0, 102, 255, 0.1);
}

.after-state::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #0ea5e9);
}

.before-state:hover,
.after-state:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
    border-color: var(--accent);
}

.state-header {
    text-align: center;
    margin-bottom: 2rem;
}

.state-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.state-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.before-state .state-header h3 {
    color: var(--accent);
}

.after-state .state-header h3 {
    color: var(--accent);
}

.state-points {
    list-style: none;
    padding: 0;
}

.state-points li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--gray-700);
    position: relative;
    padding-left: 2rem;
    line-height: 1.5;
}

.before-state .state-points li::before {
    content: '❌';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.after-state .state-points li::before {
    content: '✅';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.transformation-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.arrow-line {
    width: 2px;
    height: 3rem;
    background: linear-gradient(180deg, var(--accent), var(--success));
    position: relative;
}

.arrow-line::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--success);
}

.arrow-text {
    background: linear-gradient(45deg, var(--accent), var(--success));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3); }
    50% { box-shadow: 0 6px 25px rgba(0, 102, 255, 0.5); }
}

.success-metrics {
    margin: 3rem 0;
}

.metrics-header {
    text-align: center;
    margin-bottom: 3rem;
}

.metrics-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
}

.metrics-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.metric-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.metric-card.spray-pray {
    border-color: rgba(239, 68, 68, 0.3);
}

.metric-card.spray-pray::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #fca5a5);
}

.metric-card.strategic {
    border-color: rgba(16, 185, 129, 0.3);
}

.metric-card.strategic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--success), #6ee7b7);
}

.metric-label {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--gray-800);
}

.metric-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-name {
    font-weight: 500;
    color: var(--gray-700);
}

.stat-bad {
    font-weight: 700;
    color: #dc2626;
    font-size: 1.1rem;
}

.stat-good {
    font-weight: 700;
    color: var(--success);
    font-size: 1.1rem;
}

.final-cta-section {
    margin-top: 3rem;
}

.cta-hero-message {
    text-align: center;
    margin-bottom: 4rem;
}

.cta-hero-message h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.cta-hero-message p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-options {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.primary-cta-box {
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    border: 2px solid var(--accent);
    border-radius: 24px;
    padding: 3rem;
    color: var(--gray-900);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.1);
}

.primary-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.cta-badge {
    background: linear-gradient(45deg, var(--accent), var(--success));
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.primary-cta-box h4 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
    position: relative;
    z-index: 1;
}

.primary-cta-box p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--success) 100%);
    color: white;
    padding: 1.5rem 3rem;
    font-size: 1.35rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 102, 255, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, #059669 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 102, 255, 0.5);
}

.cta-guarantee {
    color: var(--gray-500);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.secondary-ctas {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 2rem;
    border-left: 2px solid var(--gray-200);
}

.secondary-cta-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.secondary-cta-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.cta-content h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.cta-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.link-cta {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.link-cta:hover {
    color: var(--accent-hover);
}

.hero-conclusion {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(16, 185, 129, 0.03) 100%);
    border: 2px solid rgba(0, 102, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
}

.conclusion-quote {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2rem;
    line-height: 1.4;
    position: relative;
}

.conclusion-quote::before,
.conclusion-quote::after {
    content: '"';
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.5;
    font-family: serif;
}

.conclusion-action p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .empathy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .empathy-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .problem-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .problem-icon {
        font-size: 2.5rem;
    }
    
    .pull-quote blockquote {
        font-size: 1.25rem;
        padding: 0 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    /* Guide & Plan Section Responsive */
    .guide-plan-section {
        padding: 4rem 1rem;
    }
    
    .shots-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .shot-card {
        padding: 2rem;
    }
    
    .shot-title {
        font-size: 1.5rem;
    }
    
    .shot-description {
        font-size: 1rem;
    }
    
    .shot-features {
        justify-content: center;
    }
    
    .plan-cta {
        margin-top: 4rem;
        padding: 3rem 1.5rem;
    }
    
    .plan-cta h3 {
        font-size: 1.75rem;
    }
    
    .plan-cta p {
        font-size: 1.125rem;
    }
    
    .btn-large {
        padding: 1.25rem 2.5rem;
        font-size: 1.2rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Stakes & Urgency Section Responsive */
    .stakes-urgency-section {
        padding: 4rem 1rem;
    }
    
    .urgency-title {
        font-size: 2.5rem;
    }
    
    .urgency-subtitle {
        font-size: 1.125rem;
    }
    
    .stakes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0 4rem;
    }
    
    .stake-card {
        padding: 2rem;
    }
    
    .stake-number {
        font-size: 2.5rem;
    }
    
    .social-proof-container {
        padding: 3rem 2rem;
    }
    
    .social-proof-header h3 {
        font-size: 1.75rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .cta-urgency-box {
        padding: 2.5rem 1.5rem;
    }
    
    .btn-urgency {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    /* Success Vision Section Responsive */
    .success-vision-section {
        padding: 4rem 1rem;
    }
    
    .vision-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .vision-subtitle {
        font-size: 1.125rem;
    }
    
    .transformation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .arrow-line {
        height: 2px;
        width: 3rem;
    }
    
    .arrow-line::after {
        bottom: auto;
        right: -8px;
        left: auto;
        top: 50%;
        transform: translateY(-50%);
        border-left: 12px solid var(--success);
        border-right: none;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }
    
    .before-state,
    .after-state {
        padding: 2.5rem 2rem;
    }
    
    .state-emoji {
        font-size: 2.5rem;
    }
    
    .metrics-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .metric-card {
        padding: 2.5rem 2rem;
    }
    
    .metrics-header h3 {
        font-size: 1.75rem;
    }
    
    .cta-hero-message h3 {
        font-size: 1.75rem;
    }
    
    .cta-hero-message p {
        font-size: 1.125rem;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .secondary-ctas {
        border-left: none;
        border-top: 2px solid var(--gray-200);
        padding-left: 0;
        padding-top: 2rem;
    }
    
    .secondary-cta-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .cta-icon {
        font-size: 2rem;
    }
    
    .primary-cta-box {
        padding: 2.5rem 2rem;
    }
    
    .primary-cta-box h4 {
        font-size: 1.5rem;
    }
    
    .btn-hero-primary {
        padding: 1.25rem 2.5rem;
        font-size: 1.15rem;
        width: 100%;
        max-width: 320px;
    }
    
    .hero-conclusion {
        padding: 2.5rem 2rem;
    }
    
    .conclusion-quote {
        font-size: 1.25rem;
    }
    
    .conclusion-action p {
        font-size: 1rem;
    }

    .ai-prompts-section {
        padding: 3rem 1.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .category-item {
        padding: 1.25rem 1rem;
    }

    .category-icon {
        font-size: 2rem;
    }

    .category-item h4 {
        font-size: 0.875rem;
    }
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #0ea5e9 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 1.25rem 2.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.35);
    border-radius: 12px;
}

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, #0284c7 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
}

.btn-danger {
    background: #dc3545;
    color: var(--white);
    border: 2px solid #dc3545;
}

.btn-danger:hover {
    background: #c82333;
    border-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.35rem;
    font-weight: 700;
    border-radius: 12px;
}

.btn-white {
    background: var(--white);
    color: var(--black);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-google {
    background: white;
    color: #3c4043;
    border: 2px solid #4285f4;
    font-weight: 600;
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #3367d6;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.2);
    transform: translateY(-1px);
}

.btn-google svg {
    flex-shrink: 0;
}

/* Mobile responsive styles for buttons */
@media (max-width: 768px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.375rem;
    }

    .btn-primary {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .btn-large {
        padding: 1.125rem 2.25rem;
        font-size: 1.15rem;
    }

    .btn-small {
        padding: 0.375rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
        gap: 0.25rem;
    }

    .btn-primary {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.05rem;
    }

    .btn-small {
        padding: 0.25rem 0.875rem;
        font-size: 0.75rem;
    }
}


.auth-divider {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-300);
}

.auth-divider span {
    padding: 0 1rem;
    background: white;
}


.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
    border: 2px solid transparent;
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--accent);
    transform: translateY(-2px);
}

/* Special nav button styles */
.nav-links .btn-primary {
    color: var(--white) !important;
}

.nav-links .btn-primary:hover {
    color: var(--white) !important;
}

/* Navigation Fuel Gauge */
.credits-nav-item {
    position: relative;
    z-index: 10;
}

.nav-credits-display {
    display: flex !important;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 0.25rem 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-width: 140px;
}

.nav-credits-display .gas-tank-gauge {
    margin: 0 !important;
    gap: 4px !important;
    display: flex !important;
    align-items: center !important;
}

.nav-credits-display .gauge-container {
    width: 60px !important;
    height: 35px !important;
    position: relative !important;
}

.nav-credits-display .gauge-container svg {
    width: 60px !important;
    height: 35px !important;
}

.nav-credits-display .credits-info {
    font-size: 11px !important;
    text-align: left !important;
    white-space: nowrap !important;
}

.nav-credits-display .credits-info div:first-child {
    font-size: 9px !important;
    margin-bottom: 1px !important;
    color: var(--gray-500) !important;
}

.nav-credits-display .credits-info div:last-child {
    font-weight: 600 !important;
    color: var(--black) !important;
}

/* Stats Section */
.stats {
    padding: 4rem 2rem;
    background: var(--gray-100);
}

/* Trusted By Section */
.trusted-by {
    padding: 4rem 2rem;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.trusted-container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.trusted-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2rem;
}

.trust-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 2rem;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    font-size: 1.5rem;
}

.star {
    color: var(--gray-300);
}

.star.filled {
    color: #FFC107;
}

.star.partial {
    position: relative;
    color: #FFC107;
}

.star.partial::after {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    width: 80%;
    overflow: hidden;
    color: var(--gray-300);
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
}

.rating-text {
    color: var(--gray-600);
    font-size: 1rem;
}

.review-count {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.count-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
}

.count-text {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-badges img {
    height: 40px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: opacity 0.2s ease;
}

.trust-badges img:hover {
    opacity: 1;
}

.stats-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

/* Work Section */
.work {
    padding: 6rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.work-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #00c6ff);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.work-card:hover {
    border-color: var(--gray-300);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.work-card:hover::before {
    transform: translateY(0);
}

.work-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.work-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.work-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Analyse Section */
.analyse-section {
    padding: 6rem 2rem;
    background: var(--gray-100);
    min-height: 100vh;
}

.analyse-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* API Key Section */
.api-key-section {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.api-key-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--gray-200);
}

.api-key-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.api-key-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.api-key-input-group {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.api-key-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-mono);
    transition: border-color 0.2s ease;
}

.api-key-input:focus {
    outline: none;
    border-color: var(--accent);
}

.api-key-help {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.api-key-help a {
    color: var(--accent);
    text-decoration: none;
}

.api-key-help a:hover {
    text-decoration: underline;
}

/* Main App */
.main-app {
    animation: fadeIn 0.3s ease;
}

/* Multi-Screen Navigation System */
.screen {
    display: none;
    animation: slideIn 0.3s ease;
}

.screen.active {
    display: block;
}

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

/* Screen Headers */
.screen-header {
    text-align: center;
    margin-bottom: 2rem;
}

.screen-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.screen-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Screen Actions */
.screen-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    width: 100%;
}

/* Combined Input Layout */
.combined-input-layout {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.input-column {
    flex: 1;
    min-width: 0; /* Allow columns to shrink */
}

.column-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.column-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.column-header p {
    color: var(--gray-600);
    font-size: 1rem;
}

/* Results Hub Navigation */
.results-hub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.hub-navigation {
    display: flex;
    gap: 1rem;
}

.hub-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.hub-nav-btn svg {
    width: 16px;
    height: 16px;
}

/* Quick Start Link */
.quick-start-link {
    text-align: center;
    margin-top: 1rem;
}

.quick-start-link a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.quick-start-link a:hover {
    color: var(--accent-hover);
}

/* Resume/Job Description Management */
.resume-management,
.job-desc-management {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

.main-upload-area,
.main-input-area {
    width: 100%;
}

.saved-resumes-section,
.recent-descriptions-section {
    background: var(--gray-100);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.saved-resumes-container,
.recent-descriptions-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.75rem;
}

.saved-resumes-dropdown,
.recent-descriptions-dropdown {
    flex: 1;
    min-width: 200px;
}

.upload-separator {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.upload-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gray-200);
}

.upload-separator span {
    background: var(--white);
    padding: 0 1rem;
    color: var(--gray-500);
    font-size: 0.875rem;
    position: relative;
}

/* History Section */
.results-history {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.results-history h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.history-item {
    background: var(--white);
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid var(--gray-200);
}

.history-item:hover {
    border-color: var(--accent);
    background: var(--gray-50);
}

.history-item-title {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.history-item-time {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Naming sections */
.resume-naming-section,
.job-desc-naming-section {
    background: var(--gray-50);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.name-input-container {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.5rem;
}

.name-input-container input {
    flex: 1;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .screen-header h2 {
        font-size: 1.75rem;
    }
    
    .screen-header p {
        font-size: 1rem;
    }
    
    .screen-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Mobile layout for combined input */
    .combined-input-layout {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .column-header h3 {
        font-size: 1.25rem;
    }
    
    .column-header p {
        font-size: 0.9rem;
    }
    
    .results-hub-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .hub-navigation {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hub-nav-btn {
        justify-content: center;
    }
    
    .saved-resumes-container,
    .recent-descriptions-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .name-input-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .history-list {
        gap: 0.5rem;
    }
    
    .main-upload-area,
    .main-input-area {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .screen-header {
        margin-bottom: 1.5rem;
    }
    
    .screen-header h2 {
        font-size: 1.5rem;
    }
    
    .saved-resumes-section,
    .recent-descriptions-section {
        padding: 1rem;
    }
    
    .results-history {
        padding: 0.5rem;
    }
    
    .hub-nav-btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Tier Selection */
.tier-selection {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--gray-200);
}

.tier-selection h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-bottom: 2rem;
}

.tier-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tier-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-top: -1rem;
    margin-bottom: 2.5rem;
}

.tier-option {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.tier-option:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tier-option.active {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.tier-option.active::before {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.tier-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tier-option h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.tier-option p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tier-badge-recommended {
    background: var(--success);
}

.tier-badge-premium {
    background: var(--gray-900);
}

.tier-tagline {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.tier-features {
    list-style: none;
    text-align: left;
    margin: 0 0 auto 0;
    flex-grow: 1;
}

.tier-features li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tier-ideal {
    display: block;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin-top: auto;
    font-weight: 500;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.input-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
    width: 100%;
    box-sizing: border-box;
}

.input-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.char-count {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.char-count.warning {
    color: var(--warning);
}

.char-count.error {
    color: var(--error);
}

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tab-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

textarea {
    width: 100%;
    height: 400px;
    min-height: 400px;
    max-height: 800px;
    padding: 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s ease;
    overflow-y: auto;
}

textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* Job description textarea - same height as resume input */
#job-desc-input {
    height: 400px;
    min-height: 400px;
    max-height: 800px;
}

/* File Upload */
.file-upload-area {
    border: 2px dashed var(--gray-300);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--gray-50);
}

.file-upload-area:hover {
    border-color: var(--accent);
    background: rgba(0, 102, 255, 0.05);
}

.file-upload-area.dragging {
    border-color: var(--accent);
    background: rgba(0, 102, 255, 0.1);
}

.file-upload-area svg {
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.file-upload-area p {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.file-upload-link {
    color: var(--accent);
    cursor: pointer;
}

.file-upload-link:hover {
    text-decoration: underline;
}

.file-types {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.file-preview {
    margin-top: 1rem;
}

.file-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 8px;
}

.file-name {
    font-weight: 500;
    color: var(--gray-700);
}

.remove-file {
    background: none;
    border: none;
    color: var(--error);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
}

.remove-file:hover {
    text-decoration: underline;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.action-buttons .btn {
    margin: 0;
}

.cost-estimate {
    font-size: 0.875rem;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-left: auto;
    font-weight: 500;
}

/* Results Section */
.results {
    animation: fadeIn 0.5s ease;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.results-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
}


/* Before Match Analysis Section */
.before-match-section {
    margin: 2rem 0;
    animation: fadeIn 0.5s ease;
}

.before-match-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.before-match-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.before-match-score {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.before-match-score .score-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
}

.before-match-score .score-value.good {
    color: var(--success);
}

.before-match-score .score-value.moderate {
    color: #f59e0b;
}

.before-match-score .score-value.poor {
    color: #ef4444;
}

.before-match-description {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin: 0;
}

/* Match Analysis Grid - Two Column Layout */
.match-analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.match-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.tfidf-card {
    border-left: 4px solid #f59e0b;
}

.ai-analysed-card {
    border-left: 4px solid var(--success);
}

.match-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.match-card .score-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.tfidf-card .score-value {
    color: #f59e0b;
}

.ai-analysed-card .score-value {
    color: var(--success);
}

.match-card .score-description {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.ai-features {
    text-align: left;
    margin-top: 1rem;
}

.ai-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ai-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
}

.ai-features li::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

/* TF-IDF Metrics Styles */
.tfidf-metrics {
    text-align: left;
    margin-top: 1rem;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.875rem;
}

.metric-item:last-child {
    border-bottom: none;
}

.metric-label {
    color: var(--gray-600);
    font-weight: 500;
}

.metric-value {
    color: var(--gray-800);
    font-weight: 600;
}

/* Optimization Info Callout */
.analysis-info-callout {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.analysis-info-callout .info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.analysis-info-callout p {
    margin: 0;
    color: #1e40af;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Optimization Scores Container */
.analysis-scores {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.score-metric {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Info button styles */
.score-info-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

.score-info-btn:hover {
    background: #f0f4f8;
    border-color: #667eea;
    transform: scale(1.1);
}

.score-info-btn svg {
    width: 16px;
    height: 16px;
    stroke: #6b7280;
    transition: stroke 0.2s ease;
}

.score-info-btn:hover svg {
    stroke: #667eea;
}

.score-metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.score-metric:first-child::before {
    background: linear-gradient(90deg, #0066ff 0%, #00d4ff 100%);
}

.score-metric:last-child::before {
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
}

.score-metric:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.score-metric:hover::before {
    opacity: 1;
}

.score-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.score-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-800);
    letter-spacing: -0.02em;
}

.score-value-large {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
    line-height: 1;
    letter-spacing: -0.03em;
}

.score-metric:first-child .score-value-large {
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.score-metric:last-child .score-value-large {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.score-description {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 1rem 0 0 0;
    line-height: 1.5;
    font-weight: 500;
}

/* Loading animation for scores */
@keyframes scoreLoad {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.score-metric {
    animation: scoreLoad 0.6s ease-out;
}

.score-metric:last-child {
    animation-delay: 0.1s;
}

/* Score Info Modal Styles */
.score-info-content {
    position: relative;
    padding: 0;
    max-height: 80vh !important;
    overflow-y: auto;
    margin: auto;
}

/* Ensure modal has highest z-index and proper display */
#score-info-modal {
    z-index: 9999 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

#score-info-modal .modal-content {
    z-index: 10000 !important;
    position: relative !important;
}

/* Force modal visibility when active */
#score-info-modal[style*="display: flex"] {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure match score modal is always visible when active */
#match-score-modal[style*="display: flex"] {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 9999 !important;
}

#match-score-modal {
    z-index: 9999 !important;
}

#match-score-modal .modal-content {
    z-index: 10000 !important;
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.score-info-header {
    padding: 2rem 3rem 1rem 2rem;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.score-info-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: left;
}

.score-info-body {
    padding: 2rem;
    text-align: left;
}

.score-info-body h4 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    text-align: left;
}

.score-info-body h4:first-child {
    margin-top: 0;
}

.score-info-body p {
    margin: 0.75rem 0;
    color: #6b7280;
    line-height: 1.6;
    text-align: left;
}

.score-info-body ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    color: #6b7280;
    text-align: left;
}

.score-info-body li {
    margin: 0.5rem 0;
    line-height: 1.6;
    text-align: left;
}

.score-info-body strong {
    color: #374151;
    font-weight: 600;
}

.score-ranges {
    margin-top: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    text-align: left;
}

.score-ranges div {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.score-ranges div:last-child {
    border-bottom: none;
}

.score-ranges strong {
    color: #059669;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .analysis-scores {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .analysis-info-callout {
        flex-direction: column;
        text-align: center;
    }
}

/* Legacy Match Scores - kept for backward compatibility but hidden */
.match-scores-container {
    display: none; /* Hide the old UI */
}

.match-score-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 100px;
    transition: all 0.2s ease;
}

.match-score-badge.before-score {
    border-color: #f59e0b;
}

.match-score-badge.after-score {
    border-color: var(--success);
}

.match-score-badge .score-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
}

.match-score-badge.before-score .score-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f59e0b;
}

.match-score-badge.after-score .score-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
}

.match-score-improvement {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
}


/* Results Tabs */
.results-tabs {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 2rem;
}

.result-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.result-tab.active {
    color: var(--black);
}

.result-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}

/* Enhanced Tab - AI Insights (when not active) */
.hero-tab:not(.active) {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    animation: hero-glow 2s ease-in-out infinite alternate;
}

.hero-tab:not(.active):hover {
    transform: scale(1.08) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* When AI Insights tab is active, use normal active styling */
.hero-tab.active {
    background: transparent !important;
    color: var(--black) !important;
    transform: none !important;
    box-shadow: none !important;
    animation: none !important;
    border-radius: 0 !important;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-right: 8px;
    animation: badge-pulse 2s ease-in-out infinite;
}

.pulse-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #ff4757;
    border-radius: 50%;
    animation: pulse-notification 1.5s ease-in-out infinite;
}

@keyframes hero-glow {
    0% { box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4); }
    100% { box-shadow: 0 4px 20px rgba(102, 126, 234, 0.7); }
}

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

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

/* Mobile responsive styles for results tabs */
@media (max-width: 768px) {
    .results-tabs {
        flex-direction: column;
        gap: 0.5rem;
        border-bottom: none;
        margin-bottom: 1.5rem;
    }
    
    .result-tab {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        text-align: left;
        border: 1px solid var(--gray-200);
        border-radius: 6px;
        background: var(--white);
        margin-bottom: 0.25rem;
    }
    
    .result-tab.active {
        background: var(--accent);
        color: var(--white);
        border-color: var(--accent);
    }
    
    .result-tab.active::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .results-tabs {
        gap: 0.375rem;
        margin-bottom: 1rem;
    }
    
    .result-tab {
        padding: 0.625rem 0.875rem;
        font-size: 0.85rem;
    }
}

/* Result Panels */
.result-panel {
    display: none;
    margin-bottom: 1rem;
}

.result-panel.active {
    display: block;
}

.result-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover {
    border-color: var(--black);
    color: var(--black);
}

.action-btn svg {
    width: 16px;
    height: 16px;
}

.resume-display {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2.5rem;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.8;
    white-space: pre-wrap;
    max-height: 600px;
    overflow-y: auto;
}

/* Comparison View */
.comparison-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    min-height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.comparison-column {
    position: relative;
    min-width: 0;
    max-width: 100%;
}

.comparison-column h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-column:first-child h3::before {
    content: "📄";
    font-size: 1.25rem;
}

.comparison-column:last-child h3::before {
    content: "✨";
    font-size: 1.25rem;
}

.comparison-content {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    font-size: 0.9375rem;
    line-height: 1.8;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    white-space: pre-wrap;
    word-wrap: break-word;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

/* Formatted Resume Styles */
.formatted-resume {
    font-family: var(--font-sans);
    color: var(--gray-800);
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Original Resume Styles - handles over-processed text from cleanText() */
.original-resume-section {
    font-family: var(--font-sans);
    color: var(--gray-800);
    white-space: pre-line;
    word-wrap: break-word;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

/* H2 rule removed - no longer using h2 in original section */

.original-resume-section p {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.original-resume-section ul, .original-resume-section ol {
    margin: 0.5rem 0 0.5rem 1.5rem;
}

.original-resume-section li {
    margin-bottom: 0.25rem;
}

.comparison-content .formatted-resume {
    line-height: 1.7;
    font-size: 0.9rem;
}

.resume-section-header {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin: 1.5rem 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 0.5rem;
}

.formatted-resume h4:first-child {
    margin-top: 0;
}

.resume-list {
    list-style: none;
    margin: 0.5rem 0;
    padding-left: 0;
}

.resume-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.resume-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gray-500);
    font-weight: bold;
}

.resume-link {
    color: var(--accent);
    text-decoration: none;
}

.resume-link:hover {
    text-decoration: underline;
}

.resume-phone {
    color: var(--gray-600);
}

.resume-date {
    color: var(--gray-500);
    font-style: italic;
    font-size: 0.875rem;
}

.added {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--gray-900);
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
    border-bottom: 2px solid var(--success);
}

.removed {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error);
    text-decoration: line-through;
    padding: 2px 4px;
    border-radius: 3px;
}

/* Scroll sync indicator */
.comparison-content::-webkit-scrollbar {
    width: 8px;
}

.comparison-content::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 4px;
}

.comparison-content::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}

.comparison-content::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* Insights */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.insight-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1rem;
}

.insight-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
}

.assessment-content {
    color: var(--gray-700);
}

.assessment-text {
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray-700);
    background: var(--gray-50);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.375rem 0.875rem;
    background: var(--gray-100);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.skills-list,
.tips-list,
.recommendations-list {
    list-style: none;
}

.skills-list li,
.tips-list li,
.recommendations-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.skills-list li:last-child,
.tips-list li:last-child,
.recommendations-list li:last-child {
    border-bottom: none;
}

.skills-list li::before {
    content: "⚠️";
    flex-shrink: 0;
}

.tips-list li::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    flex-shrink: 0;
}

.recommendations-list li::before {
    content: "💡";
    flex-shrink: 0;
}

/* Expertise Section */
.expertise {
    padding: 6rem 2rem;
    background: var(--gray-100);
}

.expertise-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-category {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
}

.expertise-category h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.expertise-category p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background: var(--gray-100);
}

.testimonials-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-header .stars {
    font-size: 1.125rem;
}

.review-date {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.testimonial-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.testimonial-text {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--gray-600);
    position: relative;
    overflow: hidden;
}

/* Fallback initials when image fails to load */
.reviewer-avatar::before {
    content: attr(data-initials);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    text-transform: uppercase;
}

.reviewer-name {
    font-weight: 600;
    color: var(--black);
}

.reviewer-info {
    color: var(--gray-600);
}

.verified-badge {
    margin-left: auto;
    color: var(--success);
    font-weight: 600;
}

.star.empty {
    color: var(--gray-300);
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--accent), #0052cc);
    color: var(--white);
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    padding: 4rem 2rem 2rem;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.footer-brand p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--black);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    max-width: 400px;
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.modal-content p {
    color: var(--gray-600);
}

.modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

/* Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Auth Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.auth-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--gray-500);
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: var(--black);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--black);
    font-size: 0.875rem;
}

.form-group input {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
}

.field-hint {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Mouse Hand Icon for Score Placeholders */
.score-placeholder-icon {
    display: inline-block;
    cursor: pointer;
    color: var(--gray-400);
    transition: color 0.2s ease, transform 0.1s ease;
    font-size: 2rem;
}

.score-placeholder-icon:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.score-placeholder-icon svg {
    width: 2rem;
    height: 2rem;
    fill: currentColor;
}

/* Password Toggle Styles */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    padding-right: 3rem; /* Make space for the toggle button */
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    border-radius: 4px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.password-toggle:hover {
    color: var(--gray-700);
    background-color: var(--gray-100);
}

.password-toggle:focus {
    outline: none;
    color: var(--accent);
}

.password-toggle .eye-icon,
.password-toggle .eye-off-icon {
    width: 20px;
    height: 20px;
}

.password-toggle .hidden {
    display: none;
}

.form-actions {
    margin-top: 0.5rem;
}

.btn-full {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Auth Modal Promotion Banner */
.promotion-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
    color: white;
    text-align: center;
    font-size: 0.9rem;
    animation: promotional-pulse 2s infinite;
}

.promotion-banner .promotion-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.promotion-banner .promotion-emoji {
    font-size: 1.2rem;
}

.promotion-banner .promotion-timer {
    opacity: 0.9;
    font-size: 0.8rem;
}

.auth-benefits {
    background: var(--gray-100);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.auth-benefits p {
    margin: 0.5rem 0;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

.auth-links a {
    color: var(--accent);
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

.auth-links span {
    color: var(--gray-400);
    margin: 0 0.5rem;
}

.auth-message {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin: 1rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid transparent;
    animation: slideInDown 0.3s ease-out;
}

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

.auth-message.success {
    background: var(--success);
    color: var(--white);
    border-color: #22c55e;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

.auth-message.error {
    background: var(--error);
    color: var(--white);  
    border-color: #ef4444;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

/* Auth UI Elements */
.auth-buttons {
    display: flex;
    gap: 0.5rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-email {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.usage-display {
    background: var(--gray-100);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.usage-text {
    color: var(--gray-700);
    font-weight: 500;
}

.usage-warning {
    color: var(--warning);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 0;
        padding: 0.5rem 1.5rem;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
        color: var(--black);
        text-decoration: none;
        font-weight: 500;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        padding: 1rem 1.5rem;
    }
    
    .auth-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.75rem 1.5rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        font-size: 0.95rem;
        font-weight: 600;
        margin: 0.25rem 0;
    }
    
    .user-info {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        padding: 1rem 1.5rem;
    }
    
    .user-info .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.75rem 1.5rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        font-size: 0.95rem;
        font-weight: 600;
    }
    
    .user-info .user-email {
        font-size: 0.9rem;
        color: var(--gray-600);
        text-align: center;
    }
    
    .nav-cta {
        background: var(--primary);
        color: var(--white) !important;
        border-radius: 6px;
        margin: 0.5rem 0 0 0;
    }

    /* Mobile dropdown styles */
    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin-top: 0;
        background: var(--gray-50);
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-content {
        display: block;
        opacity: 1;
        visibility: visible;
        max-height: 200px;
    }

    .dropdown-content a {
        padding: 0.5rem 1rem 0.5rem 2rem;
        margin: 0;
        border-radius: 0;
        font-size: 0.85rem;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .hero {
        padding: 6rem 1.5rem 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .input-grid,
    .comparison-grid,
    .expertise-grid,
    .match-analysis-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-content {
        padding: 1rem;
        font-size: 0.875rem;
    }
    
    .tier-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tier-option {
        padding: 1.5rem 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .trust-badges {
        flex-wrap: wrap;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Checkbox Styles for Terms of Service */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 0.5rem;
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkbox-text {
    line-height: 1.4;
}

.checkbox-text a {
    color: var(--accent);
    text-decoration: underline;
}

.checkbox-text a:hover {
    color: var(--accent-dark);
}

/* Pick Plan Page Styles */
.current-balance {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.balance-card {
    background: var(--white);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1);
    max-width: 300px;
}

.balance-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.balance-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.pricing-note {
    background: var(--gray-50);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

.pricing-note p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .balance-card {
        margin: 0 1rem;
        padding: 1.5rem 1.5rem;
    }

    .balance-amount {
        font-size: 1.25rem;
    }
}

/* Course Recommendations Styles */
.skills-gap-with-courses {
    padding: 1rem 0;
}

.gap-header {
    margin-bottom: 1.5rem;
}

.gap-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.gap-subtitle {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

.skill-courses {
    background: var(--gray-100);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.skill-courses:hover {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.1);
}

.skill-name {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.skill-name::before {
    content: "📌";
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.course-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.course-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    text-decoration: none;
    color: var(--gray-800);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.course-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--gray-300);
    background: var(--gray-50);
}

.course-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.course-platform {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.course-arrow {
    font-size: 1.1rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.course-link:hover .course-arrow {
    transform: translateX(3px);
}

.courses-footer {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.courses-footer p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .course-links {
        grid-template-columns: 1fr;
    }

    .skill-courses {
        padding: 1rem;
    }

    .course-link {
        padding: 0.75rem 0.875rem;
    }
}

/* ============================================
   SUBSCRIPTION & USAGE MODAL STYLES
   ============================================ */

/* Subscription Modal */
.subscription-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscription-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.subscription-modal .modal-content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    transform: translateZ(0);
}

.subscription-modal .modal-wide {
    max-width: 1000px;
}

.subscription-modal .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-600);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.subscription-modal .modal-close:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.subscription-modal h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.subscription-modal .modal-reason {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Tier Cards Grid */
.tier-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tier-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.tier-card.current {
    border-color: var(--success);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
}

.tier-card.current::before {
    content: "Current Plan";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tier-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.tier-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.tier-description {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.tier-features li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.tier-features li::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Usage Limit Modal */


/* Subscription Management Page */
.subscription-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.subscription-header {
    text-align: center;
    margin-bottom: 2rem;
}

.subscription-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.subscription-status {
    background: var(--gray-100);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent);
}

.subscription-status.trial {
    border-left-color: var(--warning);
}

.subscription-status.canceled {
    border-left-color: var(--error);
}

.subscription-status h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.subscription-status .status-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.status-item {
    display: flex;
    flex-direction: column;
}

.status-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.status-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
}

.usage-breakdown {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.usage-breakdown h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
}

.usage-item {
    margin-bottom: 1.5rem;
}

.usage-item:last-child {
    margin-bottom: 0;
}

.usage-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.usage-label-text {
    color: var(--gray-700);
}

.usage-label-value {
    color: var(--gray-900);
    font-weight: 600;
}

.usage-bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: 100px;
    overflow: hidden;
}

.usage-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--success));
    border-radius: 100px;
    transition: width 0.3s ease;
}

.usage-bar-fill.warning {
    background: linear-gradient(90deg, var(--warning), var(--error));
}

.subscription-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Modal Animation */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .tier-cards {
        grid-template-columns: 1fr;
    }

    .subscription-modal .modal-wide {
        max-width: 95%;
    }

    .subscription-actions {
        grid-template-columns: 1fr;
    }

    /* General modal mobile fixes */
    .modal-content {
        max-width: 95% !important;
        margin: 1rem;
        padding: 1.5rem !important;
    }

    .auth-container {
        width: 95% !important;
        padding: 1.5rem !important;
        max-height: 90vh !important;
    }

    .modal-overlay {
        padding: 1rem;
    }

    /* Make all modals scrollable on mobile */
    .modal-content,
    .auth-container {
        overflow-y: auto;
        max-height: 85vh;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 1rem !important;
    }

    .auth-container {
        padding: 1rem !important;
        max-height: 95vh !important;
    }

    .modal-content h3,
    .auth-container h2 {
        font-size: 1.25rem !important;
    }
}

/* Global mobile overflow prevention */
@media (max-width: 768px) {
    /* Force all sections to respect viewport width */
    body,
    html,
    #root,
    .container,
    section,
    .hero,
    .empathy,
    .solution,
    .how-it-works,
    .features,
    .work,
    .expertise,
    .testimonials,
    .cta-section {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* Reduce section padding on mobile */
    .hero,
    .empathy,
    .solution,
    .how-it-works,
    .features,
    .work,
    .expertise,
    .testimonials,
    .cta-section {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Ensure grids don't overflow */
    .work-grid,
    .features-grid,
    .expertise-grid,
    .testimonials-grid,
    .stats-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 !important;
        width: 100% !important;
    }

    /* Container max-width */
    .container,
    .nav-container,
    .hero-container,
    .empathy-container,
    .solution-container {
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Prevent text from overflowing */
    h1, h2, h3, h4, h5, h6, p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    /* Ensure buttons fit */
    .btn {
        max-width: 100% !important;
    }

    /* Hero actions stack on mobile */
    .hero-actions {
        flex-direction: column !important;
        width: 100% !important;
    }

    .hero-actions .btn {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    /* Extra small screens - even tighter constraints */
    .hero,
    .empathy,
    .solution,
    .how-it-works,
    .features,
    .work,
    .expertise,
    .testimonials,
    .cta-section {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .container,
    .nav-container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
}
/* Mock Interview Section */
.mock-interview-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

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

.interview-content {
    margin: 2rem 0;
    display: grid;
    gap: 3rem;
}

.interview-feature-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.interview-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.interview-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.interview-details {
    flex: 1;
}

.interview-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.interview-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.interview-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.interview-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 1rem;
}

.interview-feature-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.interview-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.benefit-text {
    color: var(--gray-600);
    line-height: 1.6;
}

.interview-trial-banner {
    background: linear-gradient(135deg, var(--accent) 0%, #0056cc 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.2);
}

.trial-content h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin: 0;
}

/* Responsive styles for mock interview section */
@media (max-width: 768px) {
    .mock-interview-section {
        padding: 4rem 1rem;
    }

    .interview-feature-card {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .interview-icon {
        font-size: 3rem;
    }

    .interview-title {
        font-size: 1.5rem;
    }

    .interview-description {
        font-size: 1rem;
    }

    .interview-benefits {
        grid-template-columns: 1fr;
    }

    .interview-trial-banner {
        padding: 1.5rem;
    }

    .trial-content h3 {
        font-size: 1.5rem;
    }

    .trial-content p {
        font-size: 1rem;
    }
}




/* Usage Limit Modal */
#usage-limit-modal .modal-content {
    max-width: 450px;
    text-align: center;
}

#usage-limit-modal .auth-header {
    margin-bottom: 1.5rem;
}

#usage-limit-modal .modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

