/* ================================================
   RESUMEAI - DARK MODE SAAS LANDING PAGE
   A stunning, modern design with glassmorphism,
   gradient accents, and smooth animations
   ================================================ */

/* ============== CSS VARIABLES ============== */
:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --accent-cyan: #00d4ff;
    --accent-green: #00ff9d;
    --accent-orange: #ff6b6b;
    --accent-yellow: #ffd93d;
    
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #00ff9d 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    --gradient-bg: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;
    
    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ============== RESET & BASE ============== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============== UTILITIES ============== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.7s; }

/* ============== BUTTONS ============== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-cyan);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: var(--glass-bg);
}

.btn-white {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ============== NAVIGATION ============== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

.nav-buttons {
    display: flex;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;

  z-index: 9999; /* 🔴 REQUIRED */

  background: rgba(10, 10, 15, 0.55);
  backdrop-filter: blur(6px);
  

  padding: 24px;
  border-bottom: 1px solid var(--border-color);
}


.mobile-menu.active {
    
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-links a {
    color: var(--text-secondary);
    font-size: 16px;
    padding: 12px 0;
}

/* ============== HERO SECTION ============== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.2) 0%, transparent 70%);
    bottom: 100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation: float 12s ease-in-out infinite;
}

.grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

/* ============== RESUME SHOWCASE ============== */
.resume-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 80px;
    perspective: 1000px;
}

.resume-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    transition: all var(--transition-slow);
}

.resume-left, .resume-right {
    width: 240px;
    transform: scale(0.85);
    opacity: 0.6;
}

.resume-left {
    transform: scale(0.85) rotateY(5deg);
}

.resume-right {
    transform: scale(0.85) rotateY(-5deg);
}

.resume-center {
    width: 300px;
    z-index: 10;
    animation: glow 3s ease-in-out infinite;
}

.resume-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
}

.resume-header {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: center;
}

.resume-avatar {
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border-radius: 50%;
}

.gradient-avatar {
    background: var(--gradient-primary);
}

.resume-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.resume-line {
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
}

.resume-line.light {
    opacity: 0.5;
}

.resume-line.accent {
    background: var(--gradient-primary);
    height: 10px;
    margin-bottom: 8px;
}

.w-25 { width: 25%; }
.w-30 { width: 30%; }
.w-40 { width: 40%; }
.w-50 { width: 50%; }
.w-60 { width: 60%; }
.w-70 { width: 70%; }
.w-75 { width: 75%; }
.w-80 { width: 80%; }
.w-85 { width: 85%; }
.w-90 { width: 90%; }
.w-95 { width: 95%; }
.w-100 { width: 100%; }

.resume-section {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.skill-tag {
    padding: 4px 10px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-sm);
    font-size: 11px;
    color: var(--accent-cyan);
}

.ai-badge, .ats-score {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
}

.ai-badge {
    background: rgba(0, 255, 157, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(0, 255, 157, 0.3);
}

.ats-score {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Gap Analysis Card */
.gap-analysis {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.gap-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.gap-header svg {
    color: var(--accent-cyan);
}

.gap-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.gap-label {
    font-size: 12px;
    color: var(--text-secondary);
    width: 90px;
}

.gap-bar {
    flex: 1;
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.gap-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

.gap-fill.warning {
    background: var(--gradient-secondary);
}

.gap-fill.success {
    background: linear-gradient(135deg, #00ff9d 0%, #00d4ff 100%);
}

.gap-value {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    width: 35px;
    text-align: right;
}

.missing-skills {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.missing-label {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.missing-tags {
    display: flex;
    gap: 6px;
}

.missing-tag {
    padding: 4px 10px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: var(--radius-sm);
    font-size: 11px;
    color: var(--accent-orange);
}

/* ============== HERO STATS ============== */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-cyan);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* ============== SECTION HEADERS ============== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-cyan);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============== FEATURES SECTION ============== */
.features {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    border-color: var(--accent-cyan);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon.icon-secondary {
    background: rgba(255, 107, 107, 0.1);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.feature-list li svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

.features-small-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-small {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all var(--transition-normal);
}

.feature-small:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.feature-small-icon {
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent-cyan);
}

.feature-small h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-small p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============== HOW IT WORKS ============== */
.how-it-works {
    padding: var(--section-padding) 0;
}

.workflow-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.workflow-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
}

.workflow-tab:hover {
    background: var(--bg-card-hover);
}

.workflow-tab.active {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    border-color: transparent;
}

.workflow-content {
    display: none;
}

.workflow-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    transition: all var(--transition-normal);
}

.step:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.step-visual {
    margin-top: 24px;
}

/* Step Mockups */
.input-mock {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
}

.input-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.input-cursor {
    font-size: 14px;
    color: var(--text-primary);
}

.input-cursor::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 16px;
    background: var(--accent-cyan);
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 1s infinite;
}

.template-grid-mock {
    display: flex;
    gap: 8px;
}

.template-mock {
    width: 60px;
    height: 80px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.template-mock.active {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.download-mock {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    color: var(--accent-cyan);
}

.download-mock span {
    color: var(--text-primary);
    font-size: 14px;
}

.upload-mock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--bg-tertiary);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    color: var(--text-muted);
    font-size: 13px;
}

.upload-mock svg {
    color: var(--accent-cyan);
}

.job-mock {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
}

.job-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 8px;
}

.job-line.short {
    width: 60%;
}

.job-highlight {
    background: rgba(255, 217, 61, 0.1);
    border-left: 3px solid var(--accent-yellow);
    padding: 8px 12px;
    font-size: 12px;
    color: var(--accent-yellow);
    margin-top: 12px;
    border-radius: 0 4px 4px 0;
}

.analysis-mock {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.score-circle {
    width: 64px;
    height: 64px;
    border: 3px solid var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.score-value {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1;
}

.score-max {
    font-size: 10px;
    color: var(--text-muted);
}

.analysis-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.analysis-bar {
    height: 6px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

/* ============== TESTIMONIALS ============== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 255, 157, 0.05) 100%);
    border-color: rgba(0, 212, 255, 0.3);
}

.testimonial-stars {
    color: var(--accent-yellow);
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
}

.author-avatar.gradient-avatar {
    background: var(--gradient-primary);
    color: var(--bg-primary);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 15px;
}

.author-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============== PRICING ============== */
.pricing {
    padding: var(--section-padding) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.pricing-card.popular {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 255, 157, 0.05) 100%);
    border-color: rgba(0, 212, 255, 0.3);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 8px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
}

.price-period {
    font-size: 16px;
    color: var(--text-muted);
}

.pricing-description {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features li svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-features li.disabled svg {
    color: var(--text-muted);
}

/* ============== CTA SECTION ============== */
.cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 255, 157, 0.1) 50%, rgba(255, 107, 107, 0.05) 100%);
}

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

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ============== FOOTER ============== */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--bg-card-hover);
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-small-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-links, .nav-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
    
    .resume-showcase {
        flex-direction: column;
    }
    
    .resume-left, .resume-right {
        transform: scale(0.9);
        opacity: 0.8;
    }
    
    .resume-center {
        order: -1;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .features-small-grid {
        grid-template-columns: 1fr;
    }
    
    .workflow-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .workflow-tab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* =================================================
   BRAND THEME OVERRIDE — PURPLE / PINK / GOLD
   ================================================= */

:root {
  /* Brand */
  --brand-purple: 258 90% 66%;
  --brand-pink: 330 81% 60%;
  --brand-gold: 45 96% 56%;

  /* Backgrounds */
  --bg-primary: hsl(240 33% 5%);
  --bg-secondary: hsl(240 33% 9%);
  --bg-tertiary: hsl(240 33% 13%);
  --bg-card: hsla(258 90% 66% / 0.04);
  --bg-card-hover: hsla(330 81% 60% / 0.07);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;

  /* Accents */
  --accent-cyan: hsl(var(--brand-purple));
  --accent-green: hsl(var(--brand-gold));
  --accent-orange: hsl(var(--brand-pink));
  --accent-yellow: hsl(var(--brand-gold));

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    hsl(var(--brand-purple)) 0%,
    hsl(var(--brand-pink)) 50%,
    hsl(var(--brand-gold)) 100%
  );

  --gradient-secondary: linear-gradient(
    135deg,
    hsl(var(--brand-pink)) 0%,
    hsl(var(--brand-gold)) 100%
  );

  --gradient-bg: linear-gradient(
    180deg,
    hsl(240 33% 5%) 0%,
    hsl(240 33% 9%) 100%
  );

  /* Borders */
  --border-color: hsla(var(--brand-purple), 0.25);
  --border-light: hsla(var(--brand-pink), 0.35);

  /* Glass */
  --glass-bg: hsla(var(--brand-purple), 0.08);
  --glass-border: hsla(var(--brand-pink), 0.25);
}

/* ---------- GLOBAL POLISH ---------- */

.gradient-text,
.step-number,
.section-title {
  background: linear-gradient(
    135deg,
    hsl(var(--brand-purple)),
    hsl(var(--brand-pink))
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- BUTTONS ---------- */

.btn-primary,
.workflow-tab.active,
.popular-badge {
  background: linear-gradient(
    135deg,
    hsl(var(--brand-purple)) 0%,
    hsl(var(--brand-pink)) 60%,
    hsl(var(--brand-gold)) 100%
  );
  color: hsl(240 33% 5%);
}

.btn-primary:hover {
  box-shadow:
    0 12px 40px hsla(var(--brand-pink), 0.45),
    0 0 80px hsla(var(--brand-gold), 0.3);
}

/* ---------- CARDS ---------- */

.feature-card:hover,
.step:hover,
.pricing-card:hover,
.testimonial-card:hover {
  border-color: hsla(var(--brand-pink), 0.6);
  box-shadow: 0 20px 60px hsla(var(--brand-purple), 0.25);
}

/* ---------- TAGS / BADGES ---------- */

.skill-tag,
.section-tag,
.ats-score {
  background: hsla(var(--brand-purple), 0.12);
  border-color: hsla(var(--brand-purple), 0.35);
  color: hsl(var(--brand-purple));
}

.ai-badge {
  background: hsla(var(--brand-gold), 0.15);
  border-color: hsla(var(--brand-gold), 0.4);
  color: hsl(var(--brand-gold));
}

/* ---------- PROGRESS / BARS ---------- */

.gap-fill,
.analysis-bar {
  background: linear-gradient(
    135deg,
    hsl(var(--brand-purple)),
    hsl(var(--brand-pink)),
    hsl(var(--brand-gold))
  );
}

/* ---------- ORBS / GLOWS ---------- */

.orb-1 {
  background: radial-gradient(
    circle,
    hsla(var(--brand-purple), 0.35) 0%,
    transparent 70%
  );
}

.orb-2 {
  background: radial-gradient(
    circle,
    hsla(var(--brand-pink), 0.3) 0%,
    transparent 70%
  );
}

.orb-3 {
  background: radial-gradient(
    circle,
    hsla(var(--brand-gold), 0.25) 0%,
    transparent 70%
  );
}
.logo {
  
  height: 80px;
  width: auto;
  cursor: pointer;
}
.navbar{
    margin-top: -17px;
}
@media (max-width: 1200px) {
  .logo {
    height: 70px;
  }
  .btn.btn-primary{
    padding: 10px;
}
}

/* Tablets */
@media (max-width: 992px) {
  .logo {
    height: 60px;
  }
  .btn.btn-primary{
    padding: 10px;
}
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .logo {
    height: 50px;
  }
  .btn.btn-primary{
    padding: 10px;
}
}

/* Mobile */
@media (max-width: 480px) {
  .logo {
    height:55px;
  }
  .navbar{
    margin-top: 0px;
}
.btn.btn-primary{
    padding: 10px;
}
}
@media (max-width: 1200px) {
    /* Hero Section Scaling */
    .hero-title {
        font-size: 3rem; /* Slightly smaller than original */
        line-height: 1.1;
    }

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

    /* Section Headers */
    .section-title {
        font-size: 2.2rem;
    }

    /* Feature & Testimonial Text */
    .feature-title, .pricing-name {
        font-size: 1.25rem;
    }

    .feature-description, .testimonial-text, .footer-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    /* More aggressive reduction for Mobile */
    .hero-title {
        font-size: 2.4rem;
    }

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

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

    /* Smaller Body Text */
    body, p, li, a {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}/* Small Desktops & Tablets */
@media (max-width: 1024px) {
    html {
        font-size: 95%; /* Reduces everything by 5% */
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    html {
        font-size: 80%; /* Reduces everything by 10% */
    }
}