/* ===================================
   PROFIT HOME - RECRUITMENT PAGE
   Premium Modern Design v2
   =================================== */

/* CSS Variables */
:root {
    --primary: #061758;
    --primary-light: #0a2470;
    --primary-dark: #040f3d;
    --accent: #FFB606;
    --accent-hover: #E5A405;
    --accent-glow: rgba(255, 182, 6, 0.35);
    --success: #10B981;
    --danger: #EF4444;
    --text: #1a1f36;
    --text-light: #525f7f;
    --text-muted: #8898aa;
    --bg: #FFFFFF;
    --bg-light: #f7f8fc;
    --bg-dark: #eef0f6;
    --border: #e3e8ee;
    --shadow-sm: 0 2px 4px rgb(0 0 0 / 0.04), 0 1px 2px rgb(0 0 0 / 0.06);
    --shadow: 0 4px 12px rgb(0 0 0 / 0.08), 0 2px 4px rgb(0 0 0 / 0.04);
    --shadow-lg: 0 12px 28px rgb(0 0 0 / 0.12), 0 4px 8px rgb(0 0 0 / 0.04);
    --shadow-xl: 0 24px 48px rgb(0 0 0 / 0.12), 0 8px 16px rgb(0 0 0 / 0.06);
    --shadow-accent: 0 8px 24px rgba(255, 182, 6, 0.25);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

.highlight {
    color: var(--accent);
    background: linear-gradient(180deg, transparent 55%, rgba(255, 182, 6, 0.2) 55%);
    padding: 0 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(255, 182, 6, 0.2);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-accent);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 17px 36px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 23, 88, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

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

.logo-img {
    height: 42px;
    width: auto;
}

.header .logo-img {
    filter: none;
}

.footer .logo-img {
    height: 36px;
}

.nav {
    display: flex;
    gap: 36px;
}

.nav a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
    letter-spacing: 0.01em;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav a:hover {
    color: white;
}

.nav a:hover::after {
    width: 100%;
}

.btn-header {
    padding: 10px 22px;
    font-size: 14px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu a {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu a:hover {
    background: var(--bg-light);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background: linear-gradient(170deg, #f7f8fc 0%, #ffffff 40%, #fefdfb 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(145deg, var(--bg-light) 0%, var(--bg-dark) 50%, rgba(255, 182, 6, 0.03) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(255, 182, 6, 0.12), rgba(255, 182, 6, 0.06));
    border: 1px solid rgba(255, 182, 6, 0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.badge-icon {
    font-size: 16px;
}

.hero h1 {
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(6, 23, 88, 0.06), rgba(6, 23, 88, 0.03));
    border: 1px solid rgba(6, 23, 88, 0.1);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 36px;
}

.hero-note-icon {
    font-size: 16px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 44px;
}

.stat {
    display: flex;
    flex-direction: column;
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--border);
}

.stat:last-child::after {
    display: none;
}

.stat-number {
    font-size: 34px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual with Person */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-person {
    max-height: 520px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.hero-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 28px 32px;
    width: 100%;
    max-width: 480px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-top: -20px;
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #FFE566);
    border-radius: 0 0 3px 3px;
}

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

.card-icon {
    font-size: 28px;
}

.card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.earning-bar {
    position: relative;
    height: 44px;
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--width);
    background: linear-gradient(90deg, var(--accent) 0%, #FFD54F 60%, #FFE566 100%);
    border-radius: var(--radius);
    animation: fillBar 2s ease-out;
}

@keyframes fillBar {
    from { width: 0; }
    to { width: var(--width); }
}

.bar-label {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
}

.card-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.card-features .check {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.06));
    color: var(--success);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    flex-shrink: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(255, 182, 6, 0.12), rgba(255, 182, 6, 0.06));
    border: 1px solid rgba(255, 182, 6, 0.15);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
    margin-top: 12px;
}

/* Comparison Section */
.comparison {
    padding: 110px 0;
    background: var(--bg-light);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.comparison-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.comparison-card.bad {
    border-color: #fecaca;
    background: linear-gradient(180deg, white 0%, #fef7f7 100%);
}

.comparison-card.good {
    border-color: #a7f3d0;
    background: linear-gradient(180deg, white 0%, #f0fdf4 100%);
}

.card-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.comparison-card.bad .card-badge {
    background: linear-gradient(135deg, #FEE2E2, #FEF2F2);
    color: #DC2626;
}

.comparison-card.good .card-badge {
    background: linear-gradient(135deg, #D1FAE5, #ECFDF5);
    color: #059669;
}

.comparison-card h3 {
    font-size: 20px;
    margin-bottom: 24px;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.comparison-card li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comparison-card .icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
}

.comparison-card li strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
    font-weight: 700;
}

.comparison-card li p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* How It Works */
.how-it-works {
    padding: 110px 0;
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 182, 6, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 182, 6, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-header-light {
    color: white;
}

.section-header-light h2 {
    color: white;
}

.section-header-light p {
    color: rgba(255, 255, 255, 0.7);
}

.section-tag-light {
    background: rgba(255, 182, 6, 0.15) !important;
    color: var(--accent) !important;
    border: 1px solid rgba(255, 182, 6, 0.3) !important;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.process-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 182, 6, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.process-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.process-num {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent), rgba(255, 182, 6, 0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.process-icon-circle {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 182, 6, 0.12);
    border: 1px solid rgba(255, 182, 6, 0.2);
    border-radius: 50%;
    color: var(--accent);
    transition: var(--transition);
}

.process-card:hover .process-icon-circle {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--accent);
}

.process-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.process-card > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    flex: 1;
}

/* Arrow between cards */
.process-card-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 20px;
    color: rgba(255, 182, 6, 0.4);
    transition: var(--transition);
}

.process-card:hover .process-card-arrow {
    color: var(--accent);
    transform: translateX(4px);
}

/* Last card highlight */
.process-card-highlight {
    background: linear-gradient(145deg, rgba(255, 182, 6, 0.12), rgba(255, 182, 6, 0.04));
    border-color: rgba(255, 182, 6, 0.25);
}

.process-card-highlight:hover {
    background: linear-gradient(145deg, rgba(255, 182, 6, 0.2), rgba(255, 182, 6, 0.08));
    border-color: rgba(255, 182, 6, 0.5);
}

.process-card-earning {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -0.02em;
}

/* Scroll animation for process cards */
.process-card {
    opacity: 0;
    transform: translateY(30px);
}

.process-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Benefits Section */
.benefits {
    padding: 110px 0;
    background: var(--bg-light);
}

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

.benefit-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card.featured {
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
}

.benefit-card.featured::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.benefit-card.featured h3 {
    color: white;
}

.benefit-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.benefit-icon {
    font-size: 44px;
    margin-bottom: 24px;
    display: block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg);
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Speed Banner */
.speed-banner {
    padding: 100px 0 110px;
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.speed-bg-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.speed-bg-lines::before,
.speed-bg-lines::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.speed-bg-lines::before {
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 182, 6, 0.1) 0%, transparent 65%);
    animation: speedFloat 8s ease-in-out infinite;
}

.speed-bg-lines::after {
    bottom: -150px;
    left: -80px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 182, 6, 0.06) 0%, transparent 65%);
    animation: speedFloat 8s ease-in-out 2s infinite reverse;
}

@keyframes speedFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
}

.speed-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Icon with animated rings */
.speed-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 40px;
}

.speed-icon-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 182, 6, 0.15);
}

.speed-icon-ring--outer {
    inset: -20px;
    animation: speedRingSpin 12s linear infinite;
    border-style: dashed;
    border-color: rgba(255, 182, 6, 0.12);
}

.speed-icon-ring--inner {
    inset: -8px;
    border-color: rgba(255, 182, 6, 0.25);
    animation: speedRingSpin 8s linear infinite reverse;
}

@keyframes speedRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.speed-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 182, 6, 0.2), rgba(255, 182, 6, 0.05));
    border: 2px solid rgba(255, 182, 6, 0.3);
    border-radius: 50%;
    color: var(--accent);
    animation: speedPulse 3s ease-in-out infinite;
    box-shadow:
        0 0 40px rgba(255, 182, 6, 0.2),
        0 0 80px rgba(255, 182, 6, 0.1),
        inset 0 0 30px rgba(255, 182, 6, 0.05);
}

.speed-icon svg {
    width: 52px;
    height: 52px;
    filter: drop-shadow(0 0 8px rgba(255, 182, 6, 0.5));
}

@keyframes speedPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(255, 182, 6, 0.2), 0 0 80px rgba(255, 182, 6, 0.1), inset 0 0 30px rgba(255, 182, 6, 0.05); }
    50% { transform: scale(1.08); box-shadow: 0 0 60px rgba(255, 182, 6, 0.3), 0 0 100px rgba(255, 182, 6, 0.15), inset 0 0 40px rgba(255, 182, 6, 0.08); }
}

.speed-title {
    color: white;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.speed-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 19px;
    max-width: 620px;
    line-height: 1.8;
    margin-bottom: 56px;
}

/* Stats row */
/* Speed banner responsive */
@media (max-width: 900px) {
    .speed-title {
        font-size: 32px;
    }

    .speed-subtitle {
        font-size: 17px;
        margin-bottom: 40px;
    }
}

/* FAQ Section */
.faq {
    padding: 110px 0;
}

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

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    background: white;
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(255, 182, 6, 0.3);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(255, 182, 6, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-icon {
    font-size: 22px;
    color: var(--accent);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 182, 6, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* Testimonials Section */
.testimonials {
    padding: 110px 0 120px;
    position: relative;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
    overflow: hidden;
}

.testimonials-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.testimonials-bg-decor::before {
    content: '';
    position: absolute;
    top: 60px;
    left: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 182, 6, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-bg-decor::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(6, 23, 88, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 28px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 calc(50% - 14px);
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px 36px 32px;
    box-shadow: 0 4px 24px rgba(6, 23, 88, 0.06), 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid rgba(6, 23, 88, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(6, 23, 88, 0.1), 0 4px 12px rgba(0,0,0,0.04);
    transform: translateY(-4px);
    border-color: rgba(255, 182, 6, 0.2);
}

.testimonial-quote-icon {
    color: var(--accent);
    margin-bottom: 8px;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 3px;
    display: flex;
    gap: 3px;
}

.testimonial-stars svg {
    filter: drop-shadow(0 1px 2px rgba(255, 182, 6, 0.3));
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 0;
    font-style: italic;
    position: relative;
}

.testimonial-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--bg-dark);
}

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

.author-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(6, 23, 88, 0.25);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.08);
}

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

.author-info strong {
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
}

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

.testimonial-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--success);
    font-size: 12px;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.testimonial-badge svg {
    width: 14px;
    height: 14px;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: white;
    cursor: pointer;
    font-size: 18px;
    color: var(--primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(6, 23, 88, 0.25);
}

.nav-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 182, 6, 0.4);
}

.dot.active {
    background: var(--accent);
    width: 32px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(255, 182, 6, 0.35);
}

/* Application Section */
.application {
    padding: 120px 0;
    background: linear-gradient(160deg, var(--bg-light) 0%, var(--bg-dark) 50%, rgba(255, 182, 6, 0.04) 100%);
    position: relative;
    overflow: hidden;
}

.application::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 182, 6, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.application-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: start;
}

.application-info .section-tag {
    margin-bottom: 20px;
}

.application-info h2 {
    margin-bottom: 16px;
}

.application-info > p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 36px;
    line-height: 1.7;
}

/* Agent Card */
.application-agent-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(6, 23, 88, 0.08);
    border: 1px solid rgba(6, 23, 88, 0.06);
    margin-bottom: 36px;
    transition: all 0.3s ease;
}

.application-agent-card:hover {
    box-shadow: 0 8px 28px rgba(6, 23, 88, 0.12);
    transform: translateY(-2px);
}

.agent-card-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow: 0 4px 12px rgba(255, 182, 6, 0.2);
    flex-shrink: 0;
}

.agent-card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.agent-card-quote {
    font-size: 14.5px;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
}

.agent-card-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

.application-person {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.recruiter-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}

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

.recruiter-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.recruiter-role {
    font-size: 14px;
    color: var(--text-light);
}

.info-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-point {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 500;
}

.point-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--success), #34d399);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.25);
    flex-shrink: 0;
}

/* Form Styles */
.application-form {
    background: white;
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 50px rgba(6, 23, 88, 0.1), 0 4px 12px rgba(0,0,0,0.04);
    border-top: 4px solid var(--accent);
    position: relative;
    transition: box-shadow 0.3s ease;
}

.application-form:hover {
    box-shadow: 0 24px 60px rgba(6, 23, 88, 0.12), 0 6px 16px rgba(0,0,0,0.04);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    font-family: inherit;
    background: var(--bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(6, 23, 88, 0.08);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Radio Cards */
.radio-group {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.radio-card {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    padding: 20px 24px;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    flex: 1;
}

.radio-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.radio-card input {
    display: none;
}

.radio-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}

.radio-card-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.radio-card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    transition: var(--transition);
}

.radio-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition);
    line-height: 1.4;
}

/* Checked state */
.radio-card:has(input:checked) {
    border-color: var(--primary);
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    box-shadow: 0 8px 20px rgba(6, 23, 88, 0.2);
}

.radio-card:has(input:checked) .radio-card-icon {
    background: white;
    color: var(--primary);
}

.radio-card:has(input:checked) .radio-card-title {
    color: white;
}

.radio-card:has(input:checked) .radio-card-desc {
    color: rgba(255, 255, 255, 0.75);
}

.experience-notice {
    display: none;
    align-items: flex-start;
    gap: 12px;
    margin-top: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.06), rgba(239, 68, 68, 0.02));
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
}

.experience-notice.show {
    display: flex;
}

.form-disabled .form-group:not(:has(.radio-group)) {
    opacity: 0.35;
    pointer-events: none;
    filter: grayscale(0.5);
}

.form-disabled .checkbox-group {
    opacity: 0.35;
    pointer-events: none;
    filter: grayscale(0.5);
}

.form-disabled button[type="submit"] {
    opacity: 0.35;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

.notice-icon {
    flex-shrink: 0;
    font-size: 18px;
}

.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.checkbox-label input {
    width: auto;
    margin-top: 4px;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 48px;
    border-radius: var(--radius-xl);
    text-align: center;
    max-width: 420px;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.modal-content h3 {
    margin-bottom: 12px;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.modal-large {
    max-width: 600px;
    text-align: left;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-light);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bg-dark);
    color: var(--text);
}

.modal-body {
    margin-top: 16px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 64px 0 28px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    color: var(--accent);
    font-size: 13px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 28px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card.featured {
        grid-column: span 2;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-card-arrow svg {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .btn-header {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-bg {
        display: none;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat::after {
        right: -12px;
        height: 30px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-person {
        max-height: 320px;
    }

    .hero-card {
        max-width: 100%;
        margin-top: -10px;
    }

    .card-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .application-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .speed-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }

    .sticky-cta-text {
        display: none;
    }

    .btn-sticky {
        width: 100%;
    }

    .mid-cta p {
        font-size: 17px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 120px 0 60px;
    }

    .comparison,
    .how-it-works,
    .benefits,
    .faq,
    .application {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .radio-group {
        flex-direction: column;
        gap: 12px;
    }

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

    .benefit-card.featured {
        grid-column: span 1;
    }

    .process-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .process-card {
        padding: 24px 20px;
    }

    .process-num {
        font-size: 36px;
    }

    .process-icon-circle {
        width: 48px;
        height: 48px;
    }

    .process-card h3 {
        font-size: 18px;
    }

    .process-card-arrow {
        display: none;
    }

    .comparison-card {
        padding: 28px;
    }

    .application-form {
        padding: 28px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}

/* ===================================
   New CRO Elements
   =================================== */

/* Urgency Badge */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.03));
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: #DC2626;
    margin-bottom: 20px;
}

.urgency-pulse {
    width: 8px;
    height: 8px;
    background: #EF4444;
    border-radius: 50%;
    animation: urgencyPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 6px rgba(239, 68, 68, 0.4); }
    50% { opacity: 0.6; transform: scale(1.6); box-shadow: 0 0 12px rgba(239, 68, 68, 0.2); }
}

/* Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(6, 23, 88, 0.97);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 700;
}

.btn-sticky {
    padding: 11px 28px;
    font-size: 14px;
}

/* Who Is This For */
.who-for {
    padding: 110px 0;
    background: var(--bg);
}

.who-for-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.who-for-card {
    padding: 40px 36px;
    border-radius: var(--radius-xl);
    border: 2px solid;
    position: relative;
}

.who-for-yes {
    background: rgba(16, 185, 129, 0.03);
    border-color: rgba(16, 185, 129, 0.2);
}

.who-for-no {
    background: rgba(239, 68, 68, 0.02);
    border-color: rgba(239, 68, 68, 0.15);
}

.who-for-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.who-for-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin: 0;
}

.who-for-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.who-for-icon--yes {
    background: linear-gradient(135deg, var(--success), #34d399);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.who-for-icon--no {
    background: linear-gradient(135deg, var(--danger), #f87171);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.who-for-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.who-for-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.who-for-check,
.who-for-x {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.who-for-check {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
}

.who-for-x {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.who-for-list li strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.who-for-list li p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.who-for-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 28px;
    padding: 16px 20px;
    background: rgba(6, 23, 88, 0.04);
    border-radius: var(--radius);
    border: 1px solid rgba(6, 23, 88, 0.08);
}

.who-for-note svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 1px;
}

.who-for-note span {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .who-for-grid {
        grid-template-columns: 1fr;
    }
}

/* Mid-page CTA */
.mid-cta {
    padding: 56px 0;
    background: var(--bg-light);
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.mid-cta-dark {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
}

.mid-cta-dark p {
    color: white;
}

.mid-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mid-cta p {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    letter-spacing: -0.01em;
}

/* Trust Badges */
.form-trust-badges {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-icon {
    font-size: 15px;
}

/* CTA Pulse Glow */
.hero-cta .btn-primary,
.application-form .btn-primary {
    animation: subtlePulse 3s ease-in-out infinite;
}

.hero-cta .btn-primary:hover,
.application-form .btn-primary:hover {
    animation: none;
}

@keyframes subtlePulse {
    0%, 100% { box-shadow: 0 2px 8px rgba(255, 182, 6, 0.2); }
    50% { box-shadow: 0 4px 28px rgba(255, 182, 6, 0.45); }
}

/* ===================================
   Animations
   =================================== */

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}
