/* --- MINIMALIST TYPOGRAPHY THEME (ISO MEET STYLE) --- */

:root {
    --bg-white: #FFFFFF;
    --text-black: #080808;
    --text-gray: #A0A0A0;
    --gray-light: #F4F4F5;
    --border-soft: #EAEAEA;

    /* Font Families */
    --font-sans: 'DM Sans', -apple-system, sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-white);
    color: var(--text-black);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.app-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    position: relative;
    overflow-x: hidden;
}

/* Header */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-soft);
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    display: block;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* Nav Desktop Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text-black);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Responsive Visibility Hooks */
.desktop-only {
    display: flex !important;
}

.mobile-only {
    display: none !important;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-soft);
    padding: 8px 14px;
    border-radius: 999px;
    /* Pill shape */
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-black);
    font-family: inherit;
}

.btn-primary-small {
    background-color: var(--text-black);
    color: var(--bg-white);
    border: none;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.2s;
}

.btn-primary-small:hover {
    background-color: #333;
}

.btn-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
}

.mobile-menu.open {
    transform: translateY(0);
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.btn-close {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-black);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.mobile-menu-footer {
    margin-top: auto;
    padding-bottom: 40px;
}

/* Main Hero Area */
.hero-container {
    padding: 60px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    flex: 1;
}

.hero-left-col {
    display: flex;
    flex-direction: column;
    max-width: 540px;
    height: 100%;
}

.hero-right-col {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Visual Image & Notifications */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/5;
    border-radius: 32px;
    display: flex;
    justify-content: center;
    overflow: visible;
}

/* Make image visible again but keep nice proportion */
.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 32px;
}

/* Glassmorphism Notification Badges */
.visual-badge.notification {
    position: absolute;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(220, 220, 220, 0.4);
    padding: 8px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    z-index: 10;
}

.notif-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notif-icon svg {
    width: 12px;
    height: 12px;
}

.notif-icon.success {
    background-color: #E8F5E9;
    color: #2E7D32;
}

.notif-icon.highlight {
    background-color: #FFF3E0;
    color: #E65100;
}

.notif-text {
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
    line-height: 1.2;
}

.notif-text strong {
    font-weight: 600;
    color: var(--text-black);
}

.notif-text span {
    color: var(--text-gray);
    font-size: 0.7rem;
}

.floating-1 {
    top: 65%;
    left: -20px;
    animation: float 6s ease-in-out infinite;
}

.floating-2 {
    bottom: 5%;
    right: -20px;
    animation: float 7s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Top Badge (Redesigned - Discreet & Elegant) */
.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 32px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--text-black);
    border-radius: 50%;
    display: inline-block;
}

/* Massive Typography */
.hero-headline {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    /* Slightly reduced max to fit the new longer text nicely */
    line-height: 1.05;
    font-weight: 400;
    /* Keeps it sharp and elegant */
    letter-spacing: -0.04em;
    color: var(--text-black);
    margin-bottom: 24px;
}

/* Injecting the italic serif into the middle of the sans word */
.hero-headline em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    /* Usually the italic weight */
    letter-spacing: -0.02em;
    margin-right: -0.05em;
    /* Tighten up spacing around the injected letter */
}

/* Subtitle */
.hero-subtext {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-gray);
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Conversion Group (Input + Button) */
.conversion-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    margin-top: auto;
    /* Pushes the form down if screen is tall */
}

.faux-input {
    background-color: var(--gray-light);
    border: none;
    padding: 18px 24px;
    border-radius: 999px;
    font-size: 1rem;
    color: #A1A1A1;
    font-family: inherit;
    width: 100%;
    /* Visually mimicking an input placeholder */
}

.btn-primary-massive {
    background-color: var(--text-black);
    color: var(--bg-white);
    border: none;
    padding: 18px 24px;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    width: 100%;
}

/* Social Proof Footer */
.social-proof-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
    margin-top: auto;
    /* Ensures it stays at the bottom */
}

.avatars-stack {
    display: flex;
    align-items: center;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--bg-white);
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.social-text {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.social-text strong {
    color: var(--text-black);
    font-weight: 500;
}



/* === FEATURES SECTION === */
.features-section {
    padding: 100px 24px 120px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.features-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.features-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.1;
    font-weight: 400;
    color: var(--text-black);
    letter-spacing: -0.04em;
    max-width: 600px;
}

.features-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-right: -0.05em;
}

.features-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 380px;
    padding-bottom: 8px;
    /* Alignment tweak */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--gray-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    color: var(--text-black);
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.feature-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* === TARGET AUDIENCE SECTION (MARQUEE) === */
.audience-section {
    padding: 80px 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-white);
    overflow: hidden;
    /* Hide the scrolling overflow */
}

.audience-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.1;
    font-weight: 400;
    color: var(--text-black);
    letter-spacing: -0.04em;
    text-align: center;
    margin-bottom: 24px;
    padding: 0 24px;
}

.audience-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-right: -0.05em;
}

.audience-subtitle {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--text-gray);
    text-align: center;
    max-width: 600px;
    margin-bottom: 60px;
    padding: 0 24px;
}

/* Marquee Animation Logic */
.marquee-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    /* Space between the two tracks */
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
}

.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
}

.track-left {
    animation: scrollLeft 60s linear infinite;
    /* base slower for desktop, speeds up on mobile */
}

.track-right {
    animation: scrollRight 60s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 30px));
    }

    /* 50% shift + exactly half of 1 gap (60px/2 = 30px) */
}

@keyframes scrollRight {
    0% {
        transform: translateX(calc(-50% - 30px));
    }

    100% {
        transform: translateX(0);
    }
}

/* Marquee Individual Items */
.marquee-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 16px 8px 8px;
    /* Slight padding to give hover room */
    background: transparent;
    border-radius: 999px;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-black);
    white-space: nowrap;
    transition: transform 0.3s ease;
    cursor: default;
}

.marquee-item:hover {
    transform: scale(1.05);
}

.audience-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media screen and (max-width: 992px) {
    .hero-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-container {
        padding: 40px 20px;
    }

    .hero-right-col {
        min-height: 400px;
    }

    .floating-1 {
        left: 10px;
    }

    .floating-2 {
        right: 10px;
    }

    /* Features Responsive */
    .features-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .features-subtitle {
        padding-bottom: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Audience Responsive */
    .audience-section {
        padding: 60px 0 80px;
    }

    .track-left {
        animation-duration: 35s;
    }

    .track-right {
        animation-duration: 40s;
    }
}

@media screen and (max-width: 480px) {
    .hero-headline {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

    .hero-right-col {
        min-height: 300px;
        /* Image removed the order: -1 so it flows naturally below the text on mobile */
    }
}

/* --- BENTO GRID SECTION --- */
.bento-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.bento-header {
    text-align: center;
    margin-bottom: 80px;
}

.bento-header h2 {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-black);
}

.bento-header h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.bento-header p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.5;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    grid-auto-rows: 480px;
    /* Fixed height for consistent look */
}

.bento-card {
    border-radius: 40px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.bento-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

/* Background Colors matching reference */
.card-bg-gray {
    background-color: #F8F8FA;
}

.card-bg-purple {
    background-color: #F6F3FF;
}

.card-bg-green {
    background-color: #EDF7F1;
}

.card-bg-blue {
    background-color: #EBF4FC;
}

/* Content Typography */
.bento-content {
    position: relative;
    z-index: 10;
    max-width: 280px;
    /* Reduced to avoid overlapping desktop mockups */
}

.bento-content h3 {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--text-black);
    line-height: 1.1;
}

.bento-content p {
    font-size: 1.05rem;
    color: #6A6A6A;
    line-height: 1.5;
}

/* Visual Container limits the mockup space */
.bento-visual {
    position: absolute;
    bottom: -10px;
    /* Bleed off the edge slightly */
    right: -10px;
    width: 80%;
    height: 65%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
}

/* Glassmorphism Classes */
.glass-effect {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* --- MOCKUP 1: ATS PHONE --- */
.visual-ats {
    right: 0px;
    /* Flush right */
    bottom: -40px;
}

.mockup-phone {
    width: 220px;
    height: 480px;
    background: #fff;
    border-radius: 42px;
    box-shadow: -10px 20px 40px rgba(0, 0, 0, 0.08);
    border: 8px solid #1A1A1A;
    position: absolute;
    right: -20px;
    bottom: 0;
    padding: 50px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1A1A1A;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}

.mockup-header-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
}

.mockup-lines {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.line {
    height: 12px;
    border-radius: 6px;
    background: #F0F0F0;
}

.w-lg {
    width: 100%;
}

.w-md {
    width: 75%;
}

.w-sm {
    width: 45%;
}

.floating-glass-card {
    position: absolute;
    left: -60px;
    /* Overlap phone slightly */
    top: 45%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 20px 24px;
    border-radius: 20px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fc-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #EBF8F0;
    color: #0E9F6E;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fc-text strong {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
}

.fc-text span {
    font-size: 0.85rem;
    color: #666;
}

/* --- MOCKUP 2: TILTED PROFILE --- */
.visual-linkedin {
    right: -20px;
    /* Bleed off right */
    bottom: -60px;
}

.tilted-glass {
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.1);
    transform: rotate(5deg) translateY(20px);
    overflow: hidden;
    padding-bottom: 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .tilted-glass {
    transform: rotate(2deg) translateY(0px);
}

.mockup-cover {
    height: 100px;
    background: linear-gradient(135deg, #E0E0E0 0%, #F5F5F5 100%);
    width: 100%;
}

.mockup-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 4px solid #fff;
    background-size: cover;
    margin-top: -36px;
    margin-left: 24px;
    position: relative;
    z-index: 2;
}

.mockup-info {
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mockup-info strong {
    font-size: 1.2rem;
    color: #111;
}

.mockup-info span {
    font-size: 0.9rem;
    color: #666;
}

.mockup-stats {
    padding: 0 24px;
    margin-top: 12px;
}

.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #F8F8FA;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #EAEAEA;
}

.stat-val {
    font-weight: 600;
    font-size: 0.95rem;
    color: #111;
}

.stat-lbl {
    font-size: 0.85rem;
    color: #666;
}

/* --- MOCKUP 3: MESSAGES --- */
.visual-messages {
    bottom: 20px;
    right: 30px;
    width: 100%;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}

.mockup-msg {
    width: 90%;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    margin-left: auto;
    /* Align right mostly */
    transition: transform 0.4s ease;
}

.msg-2 {
    transform: translateX(-30px);
}

.msg-3 {
    transform: translateX(10px);
    opacity: 0.6;
}

.bento-card:hover .msg-2 {
    transform: translateX(-40px);
}

.bento-card:hover .msg-3 {
    transform: translateX(0px);
    opacity: 0.8;
}

.msg-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-size: cover;
    flex-shrink: 0;
}

.msg-content {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 4px;
}

.msg-content strong {
    font-size: 0.95rem;
    color: #111;
}

.msg-content span {
    font-size: 0.85rem;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- MOCKUP 4: INTERVIEW VIDEO --- */
.visual-interview {
    right: 48px;
    bottom: 40px;
    width: calc(100% - 96px);
    height: 200px;
    /* Shorter to avoid top text overlap */
    justify-content: center;
    align-items: center;
}

.mockup-video {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 20%;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    /* subtle vignette */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.video-badge {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #FF3B30;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 59, 48, 0.8);
}

.video-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.ctrl-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ctrl-btn.end {
    background: #FF3B30;
}

/* RESPONSIVENESS */
@media screen and (max-width: 992px) {
    .bento-section {
        padding: 60px 20px;
    }

    .bento-header h2 {
        font-size: 2.2rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-card {
        padding: 40px 32px 0 32px;
        min-height: auto;
        gap: 32px;
        /* Disable hover scales and shadows over mobile */
        transform: none !important;
        box-shadow: none !important;
        transition: none !important;
    }

    .bento-card:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .bento-content {
        max-width: 100%;
        margin-bottom: 0;
    }

    /* Turn off all animations */
    .floating-glass-card,
    .bento-card:hover .tilted-glass,
    .bento-card:hover .msg-2,
    .bento-card:hover .msg-3 {
        animation: none !important;
        transform: none !important;
    }

    /* Make visuals flow normally inside the card flex container */
    .bento-visual {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding-top: 10px;
    }

    /* Mockup ATS */
    .visual-ats {
        right: 0;
        bottom: 0;
    }

    .mockup-phone {
        position: relative;
        right: auto;
        height: 320px;
        margin: 0 auto;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom: none;
    }

    .floating-glass-card {
        position: absolute;
        width: 90%;
        left: 5%;
        top: 40%;
        transform: none !important;
    }

    /* Mockup LinkedIn */
    .visual-linkedin {
        right: 0;
        bottom: 0;
        width: 100%;
    }

    .tilted-glass {
        width: 100%;
        transform: none !important;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    /* Mockup Messages */
    .visual-messages {
        right: 0;
        bottom: 0;
        gap: 12px;
        padding-bottom: 24px;
    }

    .mockup-msg {
        width: 100%;
        max-width: 100%;
        margin: 0;
        transform: none !important;
    }

    .msg-2,
    .msg-3 {
        transform: none !important;
        opacity: 1 !important;
    }

    /* Mockup Interview */
    .visual-interview {
        right: 0;
        bottom: 0;
        width: 100%;
        height: 240px;
        padding-top: 0;
    }

    .mockup-video {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}

/* --- FAQ & FORM MOCKUP SECTION --- */
.faq-section {
    padding: 100px 24px;
    background: #fff;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* LEFT COLUMN - FAQ */
.faq-title {
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 60px;
    color: var(--text-black);
    max-width: 450px;
}

.faq-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.accordion {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #EAEAEA;
    padding: 24px 0;
}

.faq-item summary {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-black);
    cursor: pointer;
    list-style: none;
    /* Hide default arrow */
    position: relative;
    padding-right: 30px;
}

/* Custom + / - icon */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-black);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item[open] summary {
    font-weight: 600;
}

.faq-answer {
    padding-top: 16px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
    animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RIGHT COLUMN - FORM MOCKUP */
.form-mockup-col {
    position: relative;
    display: flex;
    justify-content: center;
}

.form-mockup-card {
    background: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    position: relative;
    padding: 4px;
    /* Space for gradient border */
    z-index: 1;
}

/* Animated gradient border mimicking the reference */
.form-gradient-border {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, #FDB8A2, #FFF3D4, #B1D8B8, #FDB8A2);
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.form-mockup-content {
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-mockup-content h3 {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-black);
}

.mockup-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-input-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-black);
    margin-top: 8px;
}

.row-inputs {
    flex-direction: row;
    gap: 16px;
}

.row-inputs .mockup-input {
    flex: 1;
}

.mockup-input {
    background: #F4F4F5;
    border-radius: 999px;
    padding: 14px 20px;
    font-size: 0.95rem;
    color: #A0A0A5;
}

.input-hint {
    font-size: 0.75rem;
    color: #A0A0A5;
    padding-left: 10px;
}

.mockup-file-upload {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    border: 2px dashed #EAEAEA;
    border-radius: 12px;
    padding: 16px;
    color: #6A6A6A;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Radio Buttons */
.mockup-radio {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F4F4F5;
    border-radius: 999px;
    padding: 12px 20px;
    font-size: 0.95rem;
    color: #A0A0A5;
    transition: all 0.2s ease;
}

.mockup-radio.active {
    background: #F4F4F5;
    color: var(--text-black);
}

.radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #EAEAEA;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-radio.active .radio-circle {
    border-color: #111;
}

.radio-dot {
    width: 10px;
    height: 10px;
    background: #111;
    border-radius: 50%;
}

.mockup-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.mockup-btn:hover {
    background: #333;
}

/* RESPONSIVENESS */
@media screen and (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .faq-container {
        display: flex;
        flex-direction: column-reverse;
        gap: 60px;
    }

    .faq-title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .faq-section {
        padding: 60px 16px;
    }

    .faq-title {
        font-size: 2rem;
    }

    .form-mockup-content {
        padding: 40px 24px;
    }

    .row-inputs {
        flex-direction: column;
        gap: 8px;
    }
}

/* --- FINAL CTA SECTION --- */
.cta-section {
    position: relative;
    padding: 160px 24px;
    background: #fff;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
}

.cta-title {
    font-size: 3.8rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--text-black);
    margin-bottom: 24px;
}

.cta-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.btn-cta-large {
    background: #111;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 20px 48px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.btn-cta-large:hover {
    background: #222;
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.cta-proof {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.proof-avatars {
    display: flex;
}

.proof-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.proof-avatars .proof-avatar:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 0.95rem;
    color: #6A6A6A;
}

.proof-text strong {
    color: #111;
}

/* Floating Avatars Background */
.floating-avatars {
    position: absolute;
    inset: 0;
    top: -50px;
    bottom: -50px;
    pointer-events: none;
    z-index: 1;
}

.float-avatar {
    position: absolute;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: floating 8s ease-in-out infinite;
    opacity: 0.95;
}

.float-1 {
    top: 15%;
    left: 10%;
    width: 90px;
    height: 90px;
    animation-delay: 0s;
    filter: blur(1px);
}

.float-2 {
    top: 8%;
    right: 18%;
    width: 70px;
    height: 70px;
    animation-delay: -2s;
    border-radius: 16px;
}

.float-3 {
    bottom: 18%;
    left: 15%;
    width: 100px;
    height: 100px;
    animation-delay: -4s;
    filter: blur(2px);
    border-radius: 24px;
}

.float-4 {
    bottom: 15%;
    right: 12%;
    width: 110px;
    height: 110px;
    animation-delay: -1s;
    border-radius: 24px;
}

.float-5 {
    top: 40%;
    left: 25%;
    width: 50px;
    height: 50px;
    animation-delay: -5s;
    filter: blur(3px);
    border-radius: 12px;
}

.float-6 {
    top: 45%;
    right: 28%;
    width: 60px;
    height: 60px;
    animation-delay: -3s;
    filter: blur(1.5px);
    border-radius: 14px;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-30px) rotate(4deg);
    }
}

/* --- FOOTER --- */
.site-footer {
    border-top: 1px solid #EAEAEA;
    padding: 80px 24px;
    background: #fff;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    color: #111;
    text-decoration: none;
}

.footer-legal {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    justify-content: center;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-links a:hover {
    color: #111;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .cta-title {
        font-size: 2.8rem;
    }

    /* Make floating images less intrusive on mobile */
    .float-1,
    .float-3,
    .float-4 {
        transform: scale(0.6);
        opacity: 0.5;
    }

    .float-2,
    .float-5,
    .float-6 {
        display: none;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .cta-section {
        padding: 100px 16px;
        min-height: 480px;
    }

    .cta-title {
        font-size: 2.3rem;
    }
}