/* ============================================
   IRONGATE AI SOLUTIONS — Premium Resume Service
   Light Executive Theme
   Color Palette:
   - Background:    #FFFFFF, #F5F7FB, #EDF1F7
   - Executive Navy:#0B1D3A, #122B52, #1A3A6B
   - Accent Blue:   #2563EB, #3B82F6, #60A5FA
   - Titanium:      #6B7A8D, #8896A7, #A8B4C2, #C2CCD8
   - Text Dark:     #0F1C32, #1E2D45, #3A4A60
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-white: #FFFFFF;
    --bg-light: #F5F7FB;
    --bg-subtle: #EDF1F7;
    --navy-deep: #0B1D3A;
    --navy: #122B52;
    --navy-light: #1A3A6B;
    --navy-lighter: #2A4F8A;
    --accent: #2563EB;
    --accent-light: #3B82F6;
    --accent-lighter: #60A5FA;
    --accent-glow: rgba(37, 99, 235, 0.10);
    --accent-border: rgba(37, 99, 235, 0.20);
    --titanium-dark: #6B7A8D;
    --titanium: #8896A7;
    --titanium-light: #A8B4C2;
    --titanium-lighter: #C2CCD8;
    --titanium-pale: #D8DEE8;
    --text-heading: #0F1C32;
    --text-body: #1E2D45;
    --text-secondary: #3A4A60;
    --text-muted: #6B7A8D;
    --text-faint: #8896A7;
    --border-light: #E2E8F0;
    --border-subtle: #D0D8E4;
    --white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(11, 29, 58, 0.06);
    --shadow-md: 0 4px 20px rgba(11, 29, 58, 0.08);
    --shadow-lg: 0 8px 40px rgba(11, 29, 58, 0.10);
    --shadow-accent: 0 4px 30px rgba(37, 99, 235, 0.25);
    --shadow-card: 0 1px 3px rgba(11, 29, 58, 0.04), 0 4px 16px rgba(11, 29, 58, 0.06);
    --shadow-glass: 0 8px 32px rgba(11, 29, 58, 0.08), inset 0 1px 0 rgba(255,255,255,0.6);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-white);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Announcement Bar ---- */
.announcement-bar {
    background: linear-gradient(90deg, #0B1D3A, #1A3A6B, #2563EB, #1A3A6B);
    background-size: 300% 100%;
    animation: shimmer 4s ease-in-out infinite;
    color: #FFFFFF;
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #60A5FA;
    border-radius: 50%;
    margin-right: 4px;
    animation: pulse 1.5s ease-in-out infinite;
    vertical-align: middle;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 0;
    top: 38px;
    box-shadow: 0 1px 20px rgba(11, 29, 58, 0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-heading);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-img-footer {
    filter: drop-shadow(0 0 3px rgba(59, 130, 246, 0.4)) drop-shadow(0 0 6px rgba(37, 99, 235, 0.2));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--navy-deep);
}

.logo-sub {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
}

.btn-outline-nav {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 8px 18px;
    border: 1px solid var(--border-light);
    background: transparent;
}

.btn-outline-nav:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-primary-nav {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #FFFFFF;
    font-size: 14px;
    padding: 8px 20px;
}

.btn-primary-nav:hover {
    box-shadow: var(--shadow-accent);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy-deep);
    border-radius: 2px;
    transition: 0.3s;
}

/* ---- Buttons ---- */
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #FFFFFF;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s var(--transition-smooth);
}

.btn-primary:hover {
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.35), 0 0 0 1px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-ghost {
    color: var(--text-secondary);
    padding: 14px 32px;
    font-size: 16px;
    border: 1px solid var(--border-light);
    background: transparent;
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline {
    color: var(--accent);
    padding: 14px 32px;
    font-size: 16px;
    border: 2px solid var(--accent);
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent);
    color: #FFFFFF;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
    border-radius: var(--radius-md);
}

.btn-xl {
    padding: 18px 40px;
    font-size: 18px;
    border-radius: var(--radius-md);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    padding: 140px 0 60px;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(180deg, #FAFBFE 0%, var(--bg-light) 50%, var(--bg-white) 100%);
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 70%);
    top: -100px;
    right: -100px;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 180, 194, 0.12), transparent 70%);
    bottom: 0;
    left: -100px;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(37, 99, 235, 0.15);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.badge-icon {
    font-size: 14px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    color: var(--text-heading);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent-lighter));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-subtitle strong {
    color: var(--text-heading);
}

.hero-cta-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 48px;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
    position: relative;
    overflow: visible;
}

.btn-hero-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: var(--radius-md);
    pointer-events: none;
}

.btn-hero-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.5);
}

.btn-hero-main:hover::after {
    opacity: 1;
}

.btn-hero-main-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.btn-hero-main-sub {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 2px;
}

.ats-pulse-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 2px;
    text-align: center;
}

.ats-pulse {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    cursor: help;
    animation: atsPulse 2s ease-in-out infinite;
    text-decoration: underline dotted rgba(255, 255, 255, 0.4);
    text-underline-offset: 3px;
}

@keyframes atsPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

.ats-pulse:hover {
    animation: none;
    opacity: 1;
}

.ats-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #0F172A;
    color: #E2E8F0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    padding: 12px 16px;
    border-radius: 10px;
    width: 280px;
    text-align: left;
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 100;
}

.ats-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: #0F172A;
}

.ats-pulse-wrapper:hover .ats-tooltip {
    opacity: 1;
    pointer-events: auto;
}

.btn-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 4px 0;
    transition: color 0.3s, gap 0.3s;
    border-bottom: 1px dashed var(--titanium-light);
}

.btn-hero-link:hover {
    color: var(--accent);
    gap: 10px;
    border-color: var(--accent);
}

.btn-hero-link span {
    transition: transform 0.3s;
}

.btn-hero-link:hover span {
    transform: translateY(3px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
    border: 2px solid var(--bg-white);
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.hero-trust p {
    font-size: 14px;
    color: var(--text-muted);
}

.hero-trust strong {
    color: var(--text-heading);
}

/* Hero Visual - Resume Preview */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.resume-preview {
    position: relative;
    width: 340px;
    height: 440px;
}

.resume-card {
    position: absolute;
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
}

.resume-card-back {
    width: 300px;
    height: 400px;
    top: 20px;
    left: 40px;
    opacity: 0.5;
    transform: rotate(3deg);
    box-shadow: var(--shadow-sm);
}

.resume-card-main {
    width: 300px;
    height: 400px;
    top: 10px;
    left: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 20px 60px rgba(11, 29, 58, 0.15), 0 0 0 1px rgba(255,255,255,0.5);
    transition: transform 0.6s var(--transition-smooth);
}

.resume-preview:hover .resume-card-main {
    transform: translateY(-4px) rotate(-1deg);
}

.resume-header-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resume-name-line {
    width: 60%;
    height: 14px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 4px;
}

.resume-title-line {
    width: 40%;
    height: 8px;
    background: var(--titanium-pale);
    border-radius: 4px;
}

.resume-score {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--accent-glow);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-sm);
}

.score-ring {
    position: relative;
    width: 50px;
    height: 50px;
}

.score-ring svg {
    width: 50px;
    height: 50px;
}

.score-number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--accent);
}

.score-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

.resume-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.line {
    height: 6px;
    background: var(--bg-subtle);
    border-radius: 3px;
}

.line-full { width: 100%; }
.line-90 { width: 90%; }
.line-85 { width: 85%; }
.line-75 { width: 75%; }

.resume-badges {
    display: flex;
    gap: 8px;
}

.mini-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}

.mini-badge.pass {
    background: rgba(22, 163, 74, 0.1);
    color: #16A34A;
    border: 1px solid rgba(22, 163, 74, 0.25);
}

.floating-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(1.5);
    -webkit-backdrop-filter: blur(12px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(11, 29, 58, 0.1);
    animation: float 4s ease-in-out infinite;
    white-space: nowrap;
}

.tag-icon {
    font-size: 16px;
}

.tag-1 {
    top: 0;
    right: -30px;
    color: var(--accent);
    animation-delay: 0s;
}

.tag-2 {
    bottom: 80px;
    left: -30px;
    color: #7C3AED;
    animation-delay: 1s;
}

.tag-3 {
    bottom: 20px;
    right: -20px;
    color: #16A34A;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Logos Bar */
.logos-bar {
    margin-top: 80px;
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
}

.logos-label {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-faint);
    margin-bottom: 28px;
    font-weight: 500;
}

.logos-track {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.logo-item {
    font-size: 18px;
    font-weight: 700;
    color: var(--titanium-light);
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logo-item:hover {
    opacity: 1;
    color: var(--titanium-dark);
}

/* ---- Stats Section ---- */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0B1D3A 0%, #122B52 50%, #1A3A6B 100%);
    border-top: none;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(37, 99, 235, 0.15), transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(96, 165, 250, 0.08), transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--accent-lighter);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--accent-lighter);
    display: inline;
    margin-left: 2px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    font-weight: 500;
}

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.12);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text-heading);
}

.section-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Problem Section ---- */
.problem-section {
    padding: 100px 0 60px;
    background: var(--bg-white);
    position: relative;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.problem-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.problem-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 0 12px 40px rgba(11, 29, 58, 0.12);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-heading);
}

.problem-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.solution-bridge {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.bridge-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.bridge-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.bridge-icon {
    font-size: 20px;
}

/* ---- Services Section ---- */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.service-card:hover {
    border-color: rgba(37, 99, 235, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(11, 29, 58, 0.12);
}

.service-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--bg-white), rgba(37, 99, 235, 0.03));
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon-wrap {
    margin-bottom: 20px;
}

.service-icon {
    font-size: 40px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-heading);
}

.service-card > p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
}

.service-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: gap 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-link:hover {
    gap: 8px;
}

/* ---- Process Section ---- */
.process-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.process-grid {
    max-width: 800px;
    margin: 0 auto;
}

.process-card {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 28px;
    align-items: center;
    padding: 32px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.process-card:hover {
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 0 12px 40px rgba(11, 29, 58, 0.12);
    transform: translateX(4px);
}

.process-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
}

.process-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-heading);
}

.process-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.process-visual {
    display: flex;
    justify-content: center;
}

.upload-mockup,
.ai-mockup,
.review-mockup,
.hired-mockup {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.upload-icon, .check-icon, .party-icon {
    font-size: 20px;
}

.upload-progress {
    width: 60px;
    height: 4px;
    background: var(--titanium-pale);
    border-radius: 2px;
    overflow: hidden;
}

.upload-bar {
    width: 70%;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

.ai-pulse {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.process-connector {
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.connector-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-border), transparent);
}

/* ---- Results Section ---- */
.results-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.result-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.result-before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.result-before .value {
    font-size: 28px;
    font-weight: 800;
    color: var(--titanium);
    display: block;
}

.result-after .value {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.result-after .value.highlight {
    color: #16A34A;
}

.result-before .label,
.result-after .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-faint);
    display: block;
    margin-bottom: 4px;
}

.result-arrow {
    font-size: 24px;
    color: var(--accent);
}

.result-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-heading);
}

.result-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- Pricing Section ---- */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(11, 29, 58, 0.14);
}

.pricing-card.popular {
    border: 2px solid var(--accent);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.05), var(--bg-white) 40%);
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.2);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 56px rgba(37, 99, 235, 0.25);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #FFFFFF;
    padding: 6px 24px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-heading);
}

.pricing-for {
    font-size: 14px;
    color: var(--text-faint);
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-old {
    font-size: 18px;
    color: var(--titanium-light);
    text-decoration: line-through;
}

.price-current {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--text-heading);
}

.popular .price-current {
    color: var(--accent);
}

.price-period {
    font-size: 14px;
    color: var(--text-faint);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--bg-subtle);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.disabled {
    color: var(--titanium-light);
}

.check {
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}

.x-mark {
    color: var(--titanium-light);
    font-size: 14px;
}

.guarantee-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(96, 165, 250, 0.04));
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    text-align: left;
    backdrop-filter: blur(4px);
}

.guarantee-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.guarantee-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--accent);
}

.guarantee-text p {
    font-size: 15px;
    color: var(--text-secondary);
}

/* ---- Testimonials Section ---- */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.testimonial-card:hover {
    border-color: rgba(37, 99, 235, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(11, 29, 58, 0.12);
}

.testimonial-stars {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 14px;
    color: var(--text-heading);
}

.author-info span {
    font-size: 12px;
    color: var(--text-faint);
}

/* ---- Comparison Section ---- */
.comparison-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.comparison-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 24px rgba(11, 29, 58, 0.08);
}

.comparison-table tr {
    transition: background 0.2s;
}

.comparison-table tbody tr:hover {
    background: rgba(37, 99, 235, 0.02);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
}

.comparison-table th,
.comparison-table td {
    padding: 18px 24px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid var(--bg-subtle);
    color: var(--text-secondary);
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-heading);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-body);
}

.comparison-table .highlight-col {
    background: rgba(37, 99, 235, 0.04);
}

.comparison-table th.highlight-col {
    color: var(--accent);
    background: rgba(37, 99, 235, 0.08);
}

.comparison-table .yes {
    color: var(--accent);
    font-weight: 700;
}

.comparison-table .no {
    color: var(--titanium-light);
}

.comparison-table .partial {
    color: var(--text-muted);
}

/* ---- FAQ Section ---- */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s var(--transition-smooth);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(11, 29, 58, 0.08);
}

.faq-item.active {
    border-color: var(--accent-border);
}

.faq-question {
    width: 100%;
    background: var(--bg-white);
    border: none;
    padding: 20px 24px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- CTA Section ---- */
.cta-section {
    padding: 48px 0;
    background: var(--bg-white);
}

.cta-card {
    background: linear-gradient(135deg, #0B1D3A, #122B52 50%, #1A3A6B);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-xl);
    padding: 36px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 60%;
    margin: 0 auto;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 0%, rgba(37, 99, 235, 0.2), transparent 50%),
                radial-gradient(ellipse at 80% 100%, rgba(96, 165, 250, 0.1), transparent 50%);
    pointer-events: none;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.cta-content > p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 20px;
}

.cta-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    color: #FFFFFF;
    outline: none;
    transition: border-color 0.3s;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    border-color: var(--accent-light);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Drop zone */
.drop-zone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 24px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    transition: border-color 0.3s, background 0.3s, transform 0.2s;
    cursor: pointer;
}

.drop-zone:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.drop-zone.drag-over {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    transform: scale(1.01);
}

.drop-zone.file-added {
    border-color: #2ECC71;
    background: rgba(46, 204, 113, 0.06);
}

.drop-zone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.drop-zone-icon {
    font-size: 28px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.drop-zone.drag-over .drop-zone-icon {
    opacity: 1;
}

.drop-zone-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.drop-zone.drag-over .drop-zone-text {
    color: var(--gold);
}

.drop-zone-hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin: 4px 0;
}

.drop-zone-formats {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 12px;
}

.upload-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.upload-label:hover {
    border-color: var(--accent-light);
    color: var(--accent-lighter);
    background: rgba(255, 255, 255, 0.12);
}

.upload-btn-icon {
    font-size: 18px;
}

.cta-form .btn {
    margin-top: 6px;
}

.cta-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #94A3B8;
    margin-bottom: 24px;
}

.breadcrumb a {
    color: #2563EB;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #1D4ED8;
    text-decoration: underline;
}

.breadcrumb span {
    color: #94A3B8;
}

/* ---- Resource/Article Pages ---- */
.article-section {
    padding: 140px 0 80px;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.article-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 16px;
    line-height: 1.2;
}

.article-container .article-meta {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 32px;
}

.article-container h2 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1E293B;
    margin: 40px 0 16px;
}

.article-container h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1E293B;
    margin: 32px 0 12px;
}

.article-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 16px;
}

.article-container ul, .article-container ol {
    margin: 16px 0;
    padding-left: 24px;
}

.article-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 8px;
}

.article-container strong {
    color: #0F172A;
}

.article-container blockquote {
    border-left: 4px solid #2563EB;
    padding: 16px 24px;
    margin: 24px 0;
    background: #F8FAFC;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #475569;
}

.article-cta {
    background: linear-gradient(135deg, #0B1D3A, #122B52 50%, #1A3A6B);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 48px;
}

.article-cta h3 {
    font-family: 'Playfair Display', serif;
    color: #fff !important;
    font-size: 28px;
    margin-bottom: 12px;
}

.article-cta p {
    color: rgba(255,255,255,0.7) !important;
    margin-bottom: 24px;
}

/* ---- Blog Listing ---- */
.blog-card {
    display: block;
    padding: 28px 0;
    border-bottom: 1px solid #E2E8F0;
    text-decoration: none;
    transition: background 0.2s;
}

.blog-card:first-child {
    border-top: 1px solid #E2E8F0;
}

.blog-card:hover {
    background: #F8FAFC;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 8px;
}

.blog-card h2 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-card:hover h2 {
    color: #2563EB;
}

.blog-card-meta {
    font-size: 13px;
    color: #94A3B8;
    margin-bottom: 8px;
}

.blog-card p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

.blog-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2563EB;
    background: rgba(37, 99, 235, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 8px;
}

/* ---- Mobile Upload Button (hidden on desktop) ---- */
.mobile-upload-btn {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 24px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}
.mobile-upload-btn:active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(0.98);
}
.mobile-upload-btn.file-added {
    border-color: #2ECC71;
    background: rgba(46, 204, 113, 0.1);
}
.mobile-upload-btn .mobile-upload-icon {
    font-size: 22px;
}
.mobile-upload-btn .mobile-upload-filename {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}
.mobile-upload-btn .mobile-upload-formats {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}

/* ---- Blog Hero Image ---- */
.blog-hero {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 32px;
    overflow: hidden;
    aspect-ratio: 21 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.blog-hero svg {
    width: 100%;
    height: 100%;
}

/* ---- Footer ---- */
.footer {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, #0D2240, #0B1D3A);
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer .logo-name {
    color: #FFFFFF;
}

.footer .logo-sub {
    color: var(--accent-lighter);
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.footer-socials a:hover {
    background: var(--accent);
    color: #FFFFFF;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-lighter);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-title { font-size: 44px; }
    .section-header h2 { font-size: 36px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .process-card { grid-template-columns: 60px 1fr; }
    .process-visual { display: none; }
}

@media (max-width: 768px) {
    .announcement-bar { font-size: 12px; padding: 8px 12px; }
    .nav-links, .nav-actions { display: none; }
    .mobile-toggle { display: flex; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-light);
    }

    .hero { padding: 140px 0 40px; min-height: auto; }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .hero-visual { display: none; }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .stat-number { font-size: 40px; }

    .problem-grid,
    .services-grid,
    .results-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }

    .section-header h2 { font-size: 30px; }
    .cta-card { padding: 40px 24px; }
    .cta-content h2 { font-size: 28px; }
    .form-row, .form-row-3 { grid-template-columns: 1fr; }

    /* Mobile upload: hide drag-and-drop, show tap button (touch devices only) */

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .process-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .process-number {
        font-size: 36px;
    }

    .comparison-table th, .comparison-table td {
        padding: 12px 14px;
        font-size: 12px;
    }

    .guarantee-bar {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .logos-track {
        gap: 24px;
    }
    .logo-item {
        font-size: 14px;
    }
}

@media (max-width: 768px) and (pointer: coarse) {
    .drop-zone { display: none !important; }
    .mobile-upload-btn { display: flex !important; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .hero-cta-stack {
        align-items: stretch;
    }
    .btn-hero-main {
        padding: 18px 32px;
    }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ---- Animations ---- */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for grid children */
.fade-up.visible:nth-child(1) { transition-delay: 0s; }
.fade-up.visible:nth-child(2) { transition-delay: 0.1s; }
.fade-up.visible:nth-child(3) { transition-delay: 0.2s; }
.fade-up.visible:nth-child(4) { transition-delay: 0.3s; }
.fade-up.visible:nth-child(5) { transition-delay: 0.4s; }
.fade-up.visible:nth-child(6) { transition-delay: 0.5s; }

/* Upload Progress Bar */
.upload-progress-bar {
    display: none;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    width: 100%;
}

.upload-progress-track {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
    overflow: hidden;
}

.upload-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #3B82F6, #2ECC71);
    border-radius: 4px;
    transition: width 0.2s ease;
}

.upload-progress-text {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
    min-width: 110px;
    text-align: right;
}

/* Disabled Analyze Button */
#analyzeBtn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

#analyzeBtn.btn-ready {
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
    animation: btnPulse 1.5s ease-in-out;
}

@keyframes btnPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Checkout Modal */
.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.checkout-modal.active {
    display: flex;
}

.checkout-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.checkout-dialog {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 36px;
    max-width: 440px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.checkout-dialog h3 {
    font-size: 22px;
    color: #1E293B;
    margin-bottom: 4px;
}

.checkout-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #94A3B8;
    cursor: pointer;
    line-height: 1;
}

.checkout-close:hover {
    color: #1E293B;
}

/* Spinner for loading states */
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth section dividers */
.services-section,
.results-section,
.testimonials-section,
.faq-section {
    position: relative;
}

/* Modern selection color */
::selection {
    background: rgba(37, 99, 235, 0.15);
    color: var(--text-heading);
}

/* ---- Hero Scan Demo ---- */
.scan-demo {
    position: relative;
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.scan-card {
    width: 300px;
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(11, 29, 58, 0.18);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #3B82F6, #10B981, #F59E0B, transparent);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5), 0 0 24px rgba(16, 185, 129, 0.3);
    animation: scanMove 3s ease-in-out infinite;
}

@keyframes scanMove {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.scan-header {
    margin-bottom: 20px;
}

.scan-name-line {
    width: 65%;
    height: 14px;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
    border-radius: 4px;
    margin-bottom: 8px;
}

.scan-title-line {
    width: 40%;
    height: 8px;
    background: var(--titanium-pale);
    border-radius: 4px;
}

.scan-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    flex: 1;
}

.scan-text-line {
    height: 6px;
    background: var(--bg-subtle);
    border-radius: 3px;
    transition: background 0.5s;
}

.scan-text-line.w100 { width: 100%; }
.scan-text-line.w95 { width: 95%; }
.scan-text-line.w90 { width: 90%; }
.scan-text-line.w85 { width: 85%; }
.scan-text-line.w80 { width: 80%; }
.scan-text-line.w70 { width: 70%; }

.keyword-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.kw {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    opacity: 0;
    transform: scale(0.8);
}

.kw.visible {
    animation: kwPop 0.4s forwards;
}

.kw-1 { background: rgba(37, 99, 235, 0.1); color: #2563EB; border: 1px solid rgba(37, 99, 235, 0.25); }
.kw-2 { background: rgba(16, 185, 129, 0.1); color: #059669; border: 1px solid rgba(16, 185, 129, 0.25); }
.kw-3 { background: rgba(124, 58, 237, 0.1); color: #7C3AED; border: 1px solid rgba(124, 58, 237, 0.25); }
.kw-4 { background: rgba(245, 158, 11, 0.1); color: #D97706; border: 1px solid rgba(245, 158, 11, 0.25); }
.kw-5 { background: rgba(236, 72, 153, 0.1); color: #DB2777; border: 1px solid rgba(236, 72, 153, 0.25); }

@keyframes kwPop {
    to { opacity: 1; transform: scale(1); }
}

/* Score panel */
.scan-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 16px 48px rgba(11, 29, 58, 0.12);
    min-width: 170px;
    flex: 1;
}

.score-gauge {
    position: relative;
    width: 130px;
    height: 130px;
}

.gauge-svg {
    width: 130px;
    height: 130px;
}

.gauge-fill {
    transition: stroke-dashoffset 3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gauge-score {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gauge-number {
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, #2563EB, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.gauge-phase-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2px;
    transition: color 0.3s;
}

.gauge-phase-label.before {
    color: #B45309;
}

.gauge-phase-label.after {
    color: #2563EB;
}

.gauge-logo {
    display: block;
    height: 28px;
    width: auto;
    margin: 0 auto 4px;
}

.gauge-status {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    margin-top: 8px;
    transition: color 0.3s;
}

.gauge-status.bad {
    color: #EF4444;
}

.gauge-status.good {
    color: #10B981;
}

.scan-checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.scan-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-8px);
}

.scan-check.visible {
    animation: checkSlide 0.4s forwards;
}

.sc-dot {
    transition: background 0.3s, box-shadow 0.3s;
}

.scan-check.passed {
    color: #059669;
}

.scan-check.passed .sc-dot {
    background: #10B981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.scan-check.failed {
    color: #DC2626;
}

.scan-check.failed .sc-dot {
    background: #EF4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

@keyframes checkSlide {
    to { opacity: 1; transform: translateX(0); }
}

.sc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16A34A;
    flex-shrink: 0;
}

.scan-check.passed .sc-dot {
    background: #16A34A;
}

.scan-check.passed {
    color: #16A34A;
}
