/* =====================================================
   MAIN.CSS — Your Pay Per Lead
   yourpayperlead.com
   Shared stylesheet for index.html + apply.html
   ===================================================== */

/* ========== VARIABLES ========== */
:root {
    --orange: #FF914D;
    --orange-glow: rgba(255, 145, 77, 0.35);
    --blue: #197BFF;
    --blue-glow: rgba(25, 123, 255, 0.35);
    --purple: #8B5CF6;
    --green: #22c55e;
    --bg: #06060f;
    --glass: rgba(255, 255, 255, 0.045);
    --glass-hover: rgba(255, 255, 255, 0.075);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --text: #ffffff;
    --text-2: rgba(255, 255, 255, 0.65);
    --text-3: rgba(255, 255, 255, 0.35);
    --r: 16px;
    --r-sm: 10px;
    --r-lg: 24px;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ========== SKIP LINK ========== */
.skip-link {
    position: absolute; top: -100px; left: 16px;
    background: var(--orange); color: #fff;
    padding: 10px 20px; border-radius: 0 0 8px 8px;
    font-weight: 700; font-size: 0.9rem; z-index: 9999;
    transition: top 0.2s;
    clip: rect(0,0,0,0); overflow: hidden; width: 1px; height: 1px;
}
.skip-link:focus { top: 0; clip: auto; overflow: visible; width: auto; height: auto; }

/* ========== SCREEN READER ONLY ========== */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
body.apply-page { height: 100svh; overflow: hidden; }

/* ========== BACKGROUND BLOBS ========== */
.bg-wrap {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0; overflow: hidden;
}
.blob {
    position: absolute; border-radius: 50%;
    filter: blur(110px); opacity: 0.18;
    animation: blobfloat 16s ease-in-out infinite;
}
/* index.html blob variants */
.blob-1 { width: 800px; height: 800px; background: var(--orange); top: -250px; right: -150px; animation-duration: 18s; }
.blob-2 { width: 650px; height: 650px; background: var(--blue); bottom: 5%; left: -180px; animation-delay: -6s; animation-duration: 22s; }
.blob-3 { width: 500px; height: 500px; background: var(--purple); top: 40%; right: 15%; animation-delay: -12s; animation-duration: 25s; opacity: 0.1; }
/* apply.html blob variants */
.b1 { width: 700px; height: 700px; background: var(--orange); top: -200px; right: -100px; animation-duration: 18s; }
.b2 { width: 600px; height: 600px; background: var(--blue); bottom: 0; left: -150px; animation-delay: -8s; animation-duration: 22s; opacity: 0.15; }

@keyframes blobfloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -25px) scale(1.04); }
    66% { transform: translate(-18px, 18px) scale(0.96); }
}

/* ========== RAINBOW TOP LINE ========== */
.top-line {
    position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1001;
    background: linear-gradient(90deg, var(--orange), var(--blue), var(--purple), var(--orange));
    background-size: 200% 100%;
    animation: rainbowline 4s linear infinite;
}
@keyframes rainbowline { to { background-position: 200% 0; } }

/* ========== LAYOUT ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
section { position: relative; z-index: 1; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 1rem;
    padding: 15px 34px; border-radius: var(--r-sm); border: none;
    cursor: pointer; transition: all 0.3s ease; text-decoration: none;
}
/* index.html buttons */
.btn-orange {
    background: var(--orange); color: #fff;
    box-shadow: 0 0 28px var(--orange-glow);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 0 50px var(--orange-glow), 0 8px 28px rgba(255,145,77,0.25); }
.btn-ghost {
    background: transparent; color: #fff;
    border: 1.5px solid rgba(255,255,255,0.22);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.45); transform: translateY(-2px); }
.btn-lg { font-size: 1.1rem; padding: 19px 42px; }
/* apply.html buttons */
.btn-next { background: var(--orange); color: #fff; box-shadow: 0 0 28px var(--orange-glow); flex: 1; justify-content: center; font-size: 1.05rem; padding: 16px 24px; }
.btn-next:hover { transform: translateY(-2px); box-shadow: 0 0 48px var(--orange-glow); }
.btn-next:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-back { background: transparent; color: var(--text-2); border: 1.5px solid var(--border); padding: 14px 22px; font-size: 0.95rem; font-weight: 600; flex-shrink: 0; }
.btn-back:hover { background: rgba(255,255,255,0.05); color: #fff; border-color: var(--border-hover); }
.btn-submit { background: var(--green); color: #fff; box-shadow: 0 0 28px rgba(34,197,94,0.3); flex: 1; justify-content: center; font-size: 1.05rem; padding: 16px 24px; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 0 48px rgba(34,197,94,0.4); }

/* ========== SECTION HEADERS ========== */
.section-head { text-align: center; margin-bottom: 60px; }
.badge {
    display: inline-block;
    background: rgba(255,145,77,0.12); border: 1px solid rgba(255,145,77,0.28);
    color: var(--orange); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 6px 16px; border-radius: 20px; margin-bottom: 20px;
}
.badge.blue { background: rgba(25,123,255,0.12); border-color: rgba(25,123,255,0.28); color: var(--blue); }
.badge.purple { background: rgba(139,92,246,0.12); border-color: rgba(139,92,246,0.28); color: var(--purple); }
.section-title { font-size: 2.6rem; font-weight: 900; line-height: 1.15; margin-bottom: 18px; }
.section-sub { font-size: 1.05rem; color: var(--text-2); max-width: 580px; margin: 0 auto; line-height: 1.8; }

/* ========== SCROLL ANIMATIONS ========== */
.anim { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.anim.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; } .d5 { transition-delay: 0.5s; }

/* ========== NAVBAR — SHARED ========== */
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 38px; width: auto; }
.nav-logo-text { font-size: 1.05rem; font-weight: 900; letter-spacing: -0.02em; white-space: nowrap; }
.nav-logo-text span { color: var(--orange); }

/* ========== NAVBAR — INDEX ========== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(6, 6, 15, 0.88);
    backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 18px 24px;
    display: flex; align-items: center; justify-content: center; gap: 20px;
    flex-wrap: nowrap;
}
.nav-links { display: flex; list-style: none; gap: 20px; align-items: center; flex-wrap: nowrap; flex-shrink: 1; min-width: 0; }
.nav-links a {
    color: rgba(255,255,255,0.62); font-weight: 500; font-size: 0.88rem;
    transition: color 0.25s ease;
    position: relative; padding-bottom: 3px; white-space: nowrap;
}
.nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--orange); border-radius: 2px;
    transition: width 0.25s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active {
    color: var(--orange);
}
.nav-links a.active::after { width: 100%; }

/* Nav buttons (login / apply) when inside nav-links */
.nav-links .nav-btn { color: #fff; padding: 10px 22px; font-size: 0.9rem; }
.nav-links .nav-btn::after { display: none; }
.nav-links .nav-btn:hover { color: #fff; }
.nav-btn { padding: 9px 18px; font-size: 0.85rem; white-space: nowrap; flex-shrink: 0; }
.nav-login-btn { padding: 9px 16px !important; font-size: 0.85rem !important; }

/* ========== DROPDOWN MENU ========== */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
    display: flex; align-items: center; gap: 5px; cursor: pointer;
    color: rgba(255,255,255,0.62); font-weight: 500; font-size: 0.88rem;
    background: none; border: none; font-family: inherit; padding: 0;
    transition: color 0.25s ease;
    position: relative; padding-bottom: 3px;
}
.nav-dropdown-trigger::after {
    content: ''; position: absolute; left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--orange); border-radius: 2px;
    transition: width 0.25s ease;
}
.nav-dropdown-trigger:hover { color: #fff; }
.nav-dropdown-trigger.open { color: #fff; }
.nav-dropdown-trigger.active { color: var(--orange); }
.nav-dropdown-trigger.active::after { width: 100%; }
.dropdown-chevron {
    font-size: 0.6rem; opacity: 0.6; transition: transform 0.2s;
    display: inline-block;
}
.nav-dropdown-trigger.open .dropdown-chevron { transform: rotate(180deg); }
.dropdown-menu {
    position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
    background: rgba(6, 6, 15, 0.96); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border); border-radius: var(--r-sm);
    padding: 8px; min-width: 220px; z-index: 1000;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateX(-50%) translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.dropdown-menu.open {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dropdown-item {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 14px; border-radius: 8px;
    color: rgba(255,255,255,0.72); font-size: 0.9rem; font-weight: 500;
    transition: all 0.18s; text-decoration: none;
}
.dropdown-item:hover { background: rgba(255,255,255,0.07); color: #fff; }
.dropdown-item-icon { font-size: 1.1rem; flex-shrink: 0; }
.dropdown-item-label { font-weight: 600; display: block; }
.dropdown-item-sub { font-size: 0.78rem; color: var(--text-3); font-weight: 400; margin-top: 1px; display: block; }

/* Wide 2-column dropdown */
.dropdown-menu-wide { min-width: 480px; left: 50%; }
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

/* ========== NAVBAR — APPLY ========== */
.navbar.apply-nav {
    background: rgba(6, 6, 15, 0.88);
    backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--border);
}
.nav-inner.apply-nav-inner { max-width: 1100px; padding: 18px 28px; }
.back-link { color: var(--text-2); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.back-link:hover { color: #fff; }

/* ========== HAMBURGER BUTTON ========== */
.hamburger {
    display: none;
    background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px;
    align-items: center; justify-content: center;
    padding: 8px; z-index: 1001; flex-shrink: 0;
}
.hamburger span {
    display: block; width: 22px; height: 2px;
    background: rgba(255,255,255,0.85); border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== MOBILE NAV OVERLAY ========== */
.mobile-nav {
    display: none;
    position: fixed; inset: 0; z-index: 997;
    background: rgba(6, 6, 15, 0.97);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    flex-direction: column; align-items: stretch;
    padding: 80px 28px 48px;
    overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
    color: rgba(255,255,255,0.82); font-size: 1.1rem; font-weight: 700;
    padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    display: block; transition: color 0.2s;
}
.mobile-nav-link:hover, .mobile-nav-link:active { color: var(--orange); }
.mobile-nav-section {
    color: var(--text-3); font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    padding: 18px 0 6px;
}
.mobile-nav-service-item {
    color: rgba(255,255,255,0.65); font-size: 0.95rem; font-weight: 600;
    padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex; align-items: center; gap: 10px; transition: color 0.2s;
}
.mobile-nav-service-item:hover { color: #fff; }
.mobile-nav-cta {
    display: flex; align-items: center; justify-content: center;
    width: 100%; margin-top: 24px; padding: 17px;
}

/* =====================================================
   INDEX.HTML — SPECIFIC STYLES
   ===================================================== */

/* ========== HERO ========== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 48px;
}
.hero-content { text-align: center; max-width: 860px; margin: 0 auto; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(255,145,77,0.1); border: 1px solid rgba(255,145,77,0.22);
    color: var(--orange); font-size: 0.82rem; font-weight: 600;
    padding: 9px 20px; border-radius: 50px; margin-bottom: 30px;
}
.pulse { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.75); } }
.hero-title {
    font-size: 3.8rem; font-weight: 900; line-height: 1.1; margin-bottom: 22px;
    background: linear-gradient(150deg, #fff 0%, rgba(255,255,255,0.82) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-title .highlight {
    background: linear-gradient(135deg, var(--orange) 0%, #FFB347 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 1.18rem; color: var(--text-2); max-width: 600px; margin: 0 auto 36px; line-height: 1.8; }

/* VSL Video */
.vsl-wrapper { max-width: 860px; margin: 0 auto 56px; position: relative; }
.vsl-glow {
    position: absolute; inset: -2px; border-radius: 22px;
    background: linear-gradient(135deg, var(--orange), var(--blue), var(--purple));
    z-index: 0; opacity: 0.6; filter: blur(6px);
}
.vsl-inner {
    position: relative; z-index: 1;
    border-radius: 20px; overflow: hidden;
    background: #000; box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.vsl-iframe-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.vsl-iframe-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.vsl-thumbnail { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.vsl-play-btn {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 22px rgba(255,145,77,0.6));
    transition: transform 0.2s ease, filter 0.2s ease;
    pointer-events: none;
}
.vsl-iframe-wrap:hover .vsl-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    filter: drop-shadow(0 0 36px rgba(255,145,77,0.9));
}

.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 52px; flex-wrap: wrap; }
.hero-stats {
    display: flex; align-items: center; justify-content: center;
    background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border); border-radius: 60px;
    padding: 20px 44px; max-width: 780px; margin: 0 auto;
    flex-wrap: nowrap; gap: 6px;
}
.stat-item { text-align: center; padding: 0 30px; flex-shrink: 0; }
.stat-num { display: block; font-size: 1.75rem; font-weight: 900; color: var(--orange); line-height: 1; }
.stat-lbl { display: block; font-size: 0.78rem; color: var(--text-2); margin-top: 4px; }
.stat-div { width: 1px; height: 38px; background: var(--border); }

/* ========== TRUSTED BAR ========== */
.trusted-bar {
    padding: 35px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.trusted-bar p { text-align: center; color: var(--text-3); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 28px; }
.trusted-placeholder {
    background: var(--glass); border: 1px solid var(--border); border-radius: 12px;
    height: 72px; display: flex; align-items: center; justify-content: center;
    color: var(--text-3); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
}

/* ========== HOW IT WORKS ========== */
.how-it-works { padding: 58px 0 96px; }
/* Step visual rows */
.steps-visual { display: flex; flex-direction: column; }
.step-row {
    display: flex; align-items: center; gap: 64px; padding: 38px 0;
}
.step-row-alt { flex-direction: row-reverse; }
.step-row-text { flex: 0 0 300px; }
.step-num { font-size: 3.5rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 14px; }
.step-icon {
    width: 70px; height: 70px; border-radius: 50%; margin: 0 0 22px;
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.step-icon.orange { background: rgba(255,145,77,0.12); border: 1px solid rgba(255,145,77,0.22); }
.step-icon.blue { background: rgba(25,123,255,0.12); border: 1px solid rgba(25,123,255,0.22); }
.step-icon.purple { background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.22); }
.step-title { font-size: 1.35rem; font-weight: 700; margin-bottom: 14px; }
.step-desc { color: var(--text-2); font-size: 1rem; line-height: 1.8; }
.step-row-gif {
    flex: 1; border-radius: 14px; overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
}
.step-row-gif img, .step-row-gif video { display: block; width: 100%; height: auto; }
.step-vdivider {
    width: 2px; height: 56px;
    background: linear-gradient(180deg, rgba(255,145,77,0.5), rgba(25,123,255,0.5));
    margin: 0 auto;
    border-radius: 2px;
}

/* ========== PLATFORM DEMO ========== */
.platform-demo-section { padding: 64px 0 80px; }
.platform-demo-embed { margin-top: 48px; }

/* ========== LEAD CALCULATOR ========== */
.lead-calc-section { padding: 96px 0; background: rgba(255,255,255,0.008); }
.lead-calc-inner {
    display: flex; align-items: center; gap: 72px;
}
.lead-calc-text { flex: 0 0 380px; }
.lead-calc-bullets {
    list-style: none; margin: 28px 0 36px;
    display: flex; flex-direction: column; gap: 14px;
}
.lead-calc-bullets li { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: var(--text-2); line-height: 1.5; }
.bullet-tick { color: var(--orange); font-size: 1.1rem; flex-shrink: 0; }
.lead-calc-img {
    flex: 1; position: relative;
}
.lead-calc-img-glow {
    position: absolute; inset: -8px; border-radius: 22px;
    background: linear-gradient(135deg, var(--orange), var(--blue));
    opacity: 0.25; filter: blur(24px); z-index: 0;
}
.lead-calc-img img {
    position: relative; z-index: 1;
    display: block; width: 100%; height: auto;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 24px 70px rgba(0,0,0,0.55);
}
@media (max-width: 900px) {
    .lead-calc-inner { flex-direction: column; gap: 40px; }
    .lead-calc-text { flex: none; width: 100%; }
}

/* ========== INDUSTRIES ========== */
.industries { padding: 96px 0; background: rgba(255,255,255,0.008); }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ind-card {
    background: var(--glass); border: 1px solid var(--border);
    border-radius: var(--r); padding: 32px 22px; text-align: center;
    transition: all 0.3s ease; cursor: default;
}
.ind-card:hover {
    background: var(--glass-hover); transform: translateY(-5px);
    border-color: rgba(255,145,77,0.28); box-shadow: 0 10px 36px rgba(255,145,77,0.09);
}
/* Clickable industry card variant */
.ind-card-link {
    cursor: pointer; text-decoration: none; color: inherit;
    display: flex; flex-direction: column; align-items: center;
}
.ind-card-link:hover { color: inherit; }
.ind-arrow {
    font-size: 0.8rem; color: var(--orange); font-weight: 600;
    margin-top: 14px; opacity: 0; transition: opacity 0.25s;
}
.ind-card-link:hover .ind-arrow { opacity: 1; }
.ind-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.ind-name { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.ind-desc { font-size: 0.85rem; color: var(--text-2); line-height: 1.65; }
.ind-card.dashed { border-style: dashed; opacity: 0.55; }

/* "More coming soon" strip */
.ind-more {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin-top: 36px;
    font-size: 0.88rem; color: var(--text-3);
}
.ind-more a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.ind-more a:hover { color: #FFB347; }
.ind-more-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.15); display: inline-block; }

/* ========== CRM CAROUSEL ========== */
.integrations { padding: 96px 0; }
.crm-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 36px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.crm-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: crmScroll 34s linear infinite;
}
.crm-marquee:hover .crm-track { animation-play-state: paused; }
@keyframes crmScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.crm-item {
    display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
    padding: 0 8px;
}
.crm-logo { height: 104px; width: auto; max-width: 320px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.7; transition: opacity 0.2s, filter 0.2s; border-radius: 8px; }
.crm-marquee:hover .crm-logo { opacity: 1; }
.integ-note { text-align: center; color: var(--text-2); font-size: 0.95rem; }
.integ-note a { color: var(--orange); }

/* ========== WHY CHOOSE US ========== */
.why-us { padding: 96px 0; background: rgba(255,255,255,0.008); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ben-card {
    background: var(--glass); border: 1px solid var(--border);
    border-radius: var(--r); padding: 40px 32px; transition: all 0.3s ease;
}
.ben-card:hover { background: var(--glass-hover); transform: translateY(-4px); }
.ben-icon {
    width: 54px; height: 54px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 22px;
}
.ben-icon.orange { background: rgba(255,145,77,0.12); border: 1px solid rgba(255,145,77,0.2); color: var(--orange); }
.ben-icon.blue { background: rgba(25,123,255,0.12); border: 1px solid rgba(25,123,255,0.2); color: var(--blue); }
.ben-icon.purple { background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.2); color: var(--purple); }
.ben-title { font-size: 1.12rem; font-weight: 700; margin-bottom: 12px; }
.ben-text { color: var(--text-2); font-size: 0.93rem; line-height: 1.75; }

/* ========== TESTIMONIALS / REVIEW WALL ========== */
.testimonials { padding: 96px 0; }

/* 3-column masonry-style review wall */
.review-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: start;
}
.review-col { display: flex; flex-direction: column; gap: 18px; }

.review-card {
    background: var(--glass); border: 1px solid var(--border);
    border-radius: var(--r); padding: 22px 24px;
    transition: all 0.3s ease;
}
.review-card:hover {
    background: var(--glass-hover); transform: translateY(-3px);
    border-color: rgba(255,255,255,0.12);
}

/* Review card header: avatar + name/handle */
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.93rem; color: #fff;
}
.ra1 { background: linear-gradient(135deg, var(--orange), #FFB347); }
.ra2 { background: linear-gradient(135deg, var(--blue), var(--purple)); }
.ra3 { background: linear-gradient(135deg, var(--purple), var(--orange)); }
.ra4 { background: linear-gradient(135deg, #22c55e, var(--blue)); }
.ra5 { background: linear-gradient(135deg, #ec4899, var(--purple)); }

.review-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.review-name { font-weight: 700; font-size: 0.93rem; line-height: 1.2; }
.review-handle { font-size: 0.78rem; color: var(--text-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.review-stars { color: var(--orange); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-size: 0.9rem; color: var(--text-2); line-height: 1.75; }

/* Legacy aliases (keep old .stars etc for any remaining use) */
.stars { color: var(--orange); font-size: 1.05rem; margin-bottom: 18px; letter-spacing: 2px; }
.testi-quote { font-size: 0.97rem; color: var(--text-2); line-height: 1.8; font-style: italic; margin-bottom: 26px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar {
    width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem;
}
.avatar.a1 { background: linear-gradient(135deg, var(--orange), #FFB347); }
.avatar.a2 { background: linear-gradient(135deg, var(--blue), var(--purple)); }
.avatar.a3 { background: linear-gradient(135deg, var(--purple), var(--orange)); }
.author-name { font-weight: 700; font-size: 0.93rem; }
.author-role { color: var(--text-2); font-size: 0.82rem; }

/* ========== APPLY CTA (index) ========== */
.apply-cta { padding: 96px 0; background: rgba(255,255,255,0.008); }
.apply-box {
    background: var(--glass); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 64px 48px; text-align: center;
    position: relative; overflow: hidden;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.apply-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--blue), var(--purple));
}
.apply-box::after {
    content: ''; position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 200px; background: var(--orange); filter: blur(100px); opacity: 0.06;
    pointer-events: none;
}
.apply-title { font-size: 2.8rem; font-weight: 900; margin-bottom: 18px; line-height: 1.2; }
.apply-sub { font-size: 1.08rem; color: var(--text-2); max-width: 520px; margin: 0 auto 48px; line-height: 1.8; }
.apply-perks { display: flex; justify-content: center; gap: 32px; margin-bottom: 44px; flex-wrap: wrap; }
.apply-perk { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; color: var(--text-2); }
.apply-perk span { color: var(--orange); font-size: 1.1rem; }

/* ========== FOOTER ========== */
footer {
    padding: 48px 0 29px;
    border-top: 1px solid var(--border);
    position: relative; z-index: 1;
}
.footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 40px; margin-bottom: 48px; flex-wrap: wrap;
}
.footer-brand { max-width: 300px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { height: 34px; }
.footer-tagline { color: var(--text-2); font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-2); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-2); font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 14px; padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-copy { color: var(--text-3); font-size: 0.82rem; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: var(--text-3); font-size: 0.82rem; transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-2); }

/* =====================================================
   APPLY.HTML — SPECIFIC STYLES
   ===================================================== */

/* ========== PAGE LAYOUT ========== */
.page-wrap {
    height: 100svh;
    overflow: hidden;
    display: flex; align-items: flex-start; justify-content: center;
    padding: 68px 24px 12px;
    position: relative; z-index: 1;
}
.apply-container {
    width: 100%; max-width: 680px;
    height: 100%;
    display: flex; flex-direction: column;
    overflow: hidden;
}

/* ========== PROGRESS BAR ========== */
.progress-wrap { margin-bottom: 14px; flex-shrink: 0; }
.progress-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.progress-label { font-size: 0.82rem; color: var(--text-3); font-weight: 500; }
.progress-count { font-size: 0.82rem; color: var(--orange); font-weight: 700; }
.progress-bar { width: 100%; height: 4px; background: var(--border); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--orange), var(--blue)); border-radius: 4px; transition: width 0.5s ease; }

/* ========== STEP CARD ========== */
.step-wrap {
    background: var(--glass);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border); border-radius: var(--r-lg);
    position: relative; overflow: hidden;
    flex: 1; min-height: 0;
    display: flex; flex-direction: column;
}
.step-scroll-body {
    flex: 1; overflow-y: auto; min-height: 0;
    padding: 34px 48px 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,145,77,0.3) transparent;
}
.step-scroll-body::-webkit-scrollbar { width: 4px; }
.step-scroll-body::-webkit-scrollbar-thumb { background: rgba(255,145,77,0.3); border-radius: 4px; }
.step-wrap::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--blue), var(--purple));
}
.step-icon-big { font-size: 2.4rem; margin-bottom: 18px; }
.step-heading { font-size: 1.8rem; font-weight: 900; margin-bottom: 10px; line-height: 1.2; }
.step-sub { font-size: 1rem; color: var(--text-2); margin-bottom: 38px; line-height: 1.7; }

/* ========== FORM ELEMENTS ========== */
.field-group { display: flex; flex-direction: column; gap: 16px; margin-bottom: 8px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-2); margin-bottom: 6px; letter-spacing: 0.02em; }
.field-wrap { position: relative; }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%; background: rgba(255,255,255,0.05); border: 1.5px solid var(--border);
    border-radius: var(--r-sm); padding: 16px 20px; color: #fff;
    font-family: 'Roboto', sans-serif; font-size: 1rem; outline: none;
    transition: all 0.25s; -webkit-appearance: none; appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-3); }
input:focus, select:focus, textarea:focus {
    border-color: var(--orange); background: rgba(255,145,77,0.04);
    box-shadow: 0 0 0 3px rgba(255,145,77,0.1);
}
select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px;
}
select option { background: #0d0d20; color: #fff; }
textarea { resize: vertical; min-height: 130px; }

/* ========== CHOICE CARDS ========== */
.choices { display: grid; gap: 10px; margin-bottom: 8px; }
.choices.cols-1 { grid-template-columns: 1fr; }
.choices.cols-2 { grid-template-columns: 1fr 1fr; }
.choices.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.choice-card {
    background: rgba(255,255,255,0.04); border: 1.5px solid var(--border);
    border-radius: var(--r); padding: 14px 16px; cursor: pointer;
    transition: all 0.25s; display: flex; align-items: center; gap: 14px; text-align: left;
}
.choices.cols-2 .choice-card,
.choices.cols-3 .choice-card { padding: 20px 18px; align-items: flex-start; }
.choice-card:hover { background: rgba(255,255,255,0.07); border-color: var(--border-hover); transform: translateY(-2px); }
.choice-card.selected { border-color: var(--orange); background: rgba(255,145,77,0.08); box-shadow: 0 0 20px rgba(255,145,77,0.12); }
.choice-card.selected .choice-check { background: var(--orange); border-color: var(--orange); }
.choice-card.selected .choice-check::after { display: block; }
.choice-check {
    width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border);
    flex-shrink: 0; margin-top: 2px; position: relative; transition: all 0.2s; background: transparent;
}
.choice-check::after {
    content: ''; display: none; position: absolute; top: 4px; left: 4px;
    width: 10px; height: 10px; background: #fff; border-radius: 50%;
}
.choices.multi .choice-card.selected .choice-check { background: var(--orange); border-color: var(--orange); border-radius: 5px; }
.choices.multi .choice-card.selected .choice-check::after {
    content: '✓'; display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%; top: 0; left: 0; font-size: 0.7rem; font-weight: 900; background: transparent; border-radius: 0;
}
.choices.multi .choice-check { border-radius: 5px; }
.choice-body .choice-title { font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.choice-body .choice-desc { font-size: 0.83rem; color: var(--text-2); line-height: 1.5; }
.choice-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 1px; }

/* ========== INDUSTRY CHIPS ========== */
.ind-choices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.ind-chip {
    background: rgba(255,255,255,0.04); border: 1.5px solid var(--border);
    border-radius: var(--r-sm); padding: 14px 16px; cursor: pointer;
    transition: all 0.2s; display: flex; align-items: center;
    justify-content: space-between; gap: 10px; font-size: 0.93rem; font-weight: 500;
}
.ind-chip:hover { background: rgba(255,255,255,0.07); border-color: var(--border-hover); }
.ind-chip.selected { border-color: var(--blue); background: rgba(25,123,255,0.1); }
.ind-chip-left { display: flex; align-items: center; gap: 10px; }
.ind-chip .ind-emoji { font-size: 1.3rem; }
.ind-chip-check {
    width: 20px; height: 20px; flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.2); border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; font-size: 0.72rem; font-weight: 900; color: #fff;
}
.ind-chip.selected .ind-chip-check {
    background: var(--blue); border-color: var(--blue);
}
.ind-chip.selected .ind-chip-check::after { content: '✓'; }

/* ========== BUDGET CHIPS ========== */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
    background: rgba(255,255,255,0.04); border: 1.5px solid var(--border);
    border-radius: 50px; padding: 10px 22px; cursor: pointer;
    transition: all 0.2s; font-size: 0.9rem; font-weight: 500;
}
.chip:hover { background: rgba(255,255,255,0.07); border-color: var(--border-hover); }
.chip.selected { border-color: var(--orange); background: rgba(255,145,77,0.1); color: var(--orange); }

/* ========== FORM NAVIGATION ========== */
.btn-row {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 0; gap: 14px;
    flex-shrink: 0;
    padding: 14px 48px 22px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ========== SUCCESS STATE ========== */
.success-wrap { text-align: center; padding: 20px 0; }
.success-icon { font-size: 4rem; margin-bottom: 20px; }
.success-title { font-size: 2rem; font-weight: 900; margin-bottom: 14px; }
.success-sub { font-size: 1.05rem; color: var(--text-2); max-width: 420px; margin: 0 auto 36px; line-height: 1.8; }
.success-perks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; text-align: left; }
.success-perk { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--text-2); }
.success-perk .chk { color: var(--green); font-size: 1.1rem; }

/* ========== REVIEW SUMMARY ========== */
.summary { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; margin-bottom: 28px; }
.summary h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 16px; }
.sum-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.9rem; }
.sum-row:last-child { border-bottom: none; }
.sum-label { color: var(--text-2); flex-shrink: 0; }
.sum-value { font-weight: 600; text-align: right; }

/* ========== STEP DOTS ========== */
.step-dots { display: flex; justify-content: center; gap: 8px; margin-bottom: 12px; flex-shrink: 0; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: all 0.3s; }
.dot.active { background: var(--orange); width: 24px; border-radius: 4px; }
.dot.done { background: rgba(255,145,77,0.5); }

/* ========== FIELD HINT ========== */
.field-hint { font-size: 0.8rem; color: var(--text-3); margin-top: 5px; }

/* ========== SHAKE ANIMATION ========== */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-3px); }
    40% { transform: translateX(3px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
}

/* ========== FAQ SECTION (HOMEPAGE) ========== */
.faq-section { padding: 80px 0; position: relative; z-index: 1; }
.hp-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 3px; }
.hp-faq-item {
    background: var(--glass); border: 1px solid var(--border);
    border-radius: var(--r-sm); overflow: hidden;
}
.hp-faq-q {
    width: 100%; background: none; border: none; color: var(--text);
    font-family: 'Roboto', sans-serif; font-size: 1.05rem; font-weight: 700;
    padding: 20px 24px; text-align: left; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    transition: background 0.2s; line-height: 1.4;
}
.hp-faq-q:hover { background: rgba(255,255,255,0.03); }
.hp-faq-q.open { color: var(--orange); }
.hp-faq-q.open .hp-faq-arrow { transform: rotate(180deg); }
.hp-faq-arrow { font-size: 0.7rem; transition: transform 0.3s; flex-shrink: 0; opacity: 0.45; }
.hp-faq-a { display: none; padding: 4px 24px 22px; font-size: 0.97rem; color: var(--text-2); line-height: 1.85; }
.hp-faq-a.open { display: block; }
.hp-faq-a p { margin-bottom: 0; }

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* Medium screens — hide less important nav items */
@media (max-width: 1200px) and (min-width: 769px) {
    .nav-hide-md { display: none !important; }
    .nav-inner { padding: 14px 20px; gap: 14px; }
    .nav-links { gap: 14px; }
    .nav-links a, .nav-dropdown-trigger { font-size: 0.82rem !important; }
    .nav-logo-text { font-size: 0.88rem; }
    .nav-btn { padding: 8px 14px !important; font-size: 0.8rem !important; }
}

@media (max-width: 1024px) {
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .review-wall { grid-template-columns: repeat(2, 1fr); }
    .dropdown-menu-wide { min-width: 340px; }
    .dropdown-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.6rem; }
    .section-title { font-size: 2rem; }
    .step-row, .step-row-alt { flex-direction: column !important; gap: 28px; }
    .step-row-text { flex: none; width: 100%; }
    .step-row-gif { flex: none; width: 100%; max-width: 100%; }
    .step-row-gif img, .step-row-gif video { width: 100%; height: auto; max-width: 100%; }
    .review-wall { grid-template-columns: 1fr; }
    .nav-links { display: none !important; }
    .hamburger { display: flex; }
    .nav-btn { display: none !important; }
    .nav-inner { justify-content: space-between !important; padding: 16px 20px !important; }
    .hero-stats { border-radius: 16px; padding: 16px 12px; gap: 4px; flex-wrap: nowrap; justify-content: center; }
    .stat-item { padding: 6px 10px; }
    .stat-num { font-size: 1.1rem; }
    .stat-lbl { font-size: 0.65rem; }
    .stat-div { height: 24px; }
    .testi-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .apply-box { padding: 48px 24px; }
    .apply-title { font-size: 2rem; }
    .footer-top { flex-direction: column; }
    #cursor-glow { display: none; }
    .crm-marquee { -webkit-overflow-scrolling: touch; }
}
@media (max-width: 640px) {
    .page-wrap { padding: 60px 12px 8px; }
    .step-scroll-body { padding: 22px 20px 8px; }
    .btn-row { padding: 12px 20px 18px; }
    .row-2 { grid-template-columns: 1fr; }
    .choices.cols-2, .choices.cols-3 { grid-template-columns: 1fr; }
    .ind-choices { grid-template-columns: 1fr; }
    .step-heading { font-size: 1.45rem; }
    .step-sub { font-size: 0.93rem; margin-bottom: 22px; }
    .step-icon-big { font-size: 2rem; margin-bottom: 12px; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .industries-grid { grid-template-columns: 1fr; }
    /* Ensure 48px minimum tap targets on mobile */
    .btn, .chip, .choice-card, .ind-chip, .hp-faq-q, .mobile-nav-link, .mobile-nav-service-item { min-height: 48px; }
    .footer-col a, .footer-legal a { display: inline-block; min-height: 44px; line-height: 44px; }
}

/* ========== CURSOR GLOW + GROW EFFECT ========== */
#cursor-glow {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,145,77,0.13) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    will-change: left, top;
}

/* Grow on hover — applied to interactive elements */
a:not(.skip-link),
button,
.btn,
.card,
.how-card,
.industry-card,
.benefit-card,
.testimonial-card,
.crm-logo-item,
.faq-item,
.how-step,
.filter-item,
.related-card,
.sidebar-card,
.blog-nav-card,
.inline-cta,
.stat-cell,
.dropdown-item {
    transition-property: transform, box-shadow, background, color, border-color, opacity;
    transition-duration: 0.22s;
    transition-timing-function: ease;
}

a:not(.skip-link):hover,
button:hover,
.btn:hover,
.card:hover,
.how-card:hover,
.industry-card:hover,
.benefit-card:hover,
.testimonial-card:hover,
.crm-logo-item:hover,
.faq-item:hover,
.how-step:hover,
.filter-item:hover,
.related-card:hover,
.sidebar-card:hover,
.blog-nav-card:hover,
.stat-cell:hover,
.dropdown-item:hover {
    transform: scale(1.025);
}
