/* Fellix Font */
@font-face {
    font-family: 'Fellix';
    src: url('fonts/Fellix-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Fellix';
    src: url('fonts/Fellix-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Fellix';
    src: url('fonts/Fellix-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Fellix';
    src: url('fonts/Fellix-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Fellix';
    src: url('fonts/Fellix-Black.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Fellix', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #232323;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography Scale */
h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
}

h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

/* Colors */
:root {
    --primary: #1375DC;
    --secondary: #F97316;
    --tertiary: #056050;
    --dark: #000000;
    --gray: #232323;
    --light-blue: #E7F1FB;
    --white: #FFFFFF;
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-tertiary { color: var(--tertiary); }
.text-white { color: var(--white); }
.text-white-80 { color: rgba(255, 255, 255, 0.8); }

/* Container */
.container {
    max-width: 1336px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    font-family: 'Fellix', sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 4px rgba(19, 117, 220, 0.2);
}

.btn-primary:hover {
    background: #0F5FB0;
    box-shadow: 0 4px 8px rgba(19, 117, 220, 0.25);
}

.btn-full-width {
    width: 100%;
    margin-top: 24px;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #f0f0f0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

/* Navbar */
.navbar {
    position: fixed;
    padding-top: 15px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    mask-image: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.8) 50%,
        rgba(0, 0, 0, 0.6) 80%,
        rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.8) 50%,
        rgba(0, 0, 0, 0.6) 80%,
        rgba(0, 0, 0, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
    z-index: 1001;
}

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    background: var(--light-blue);
    padding: 12px 12px 12px 24px;
    gap: 2rem;
    border-radius: 24px;

}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.underline {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--dark);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.hamburger.active span:first-child {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
}

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

.mobile-menu-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 0.75rem 0;
    transition: color 0.2s;
}

.mobile-menu-link:hover {
    color: var(--primary);
}

.mobile-menu .btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* Hero Section */
.hero {
    padding: 170px 80px;
    background: var(--white);
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.trustpilot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
}


.hero-title {
    margin-bottom: 2.2rem;
}

.arrow-top {
    position: absolute;
    top: 40px;
    left: 66%;
    transform: translateX(-50%);
    right: 0;
}

.arrow-bottom {
    position: absolute;
    top: 140px;
    left: 66%;
    transform: translateX(-50%);
    right: 0;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 6rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2rem;
    max-width: 1336px;
    width: 100%;
    margin: 0 auto 3rem;
}

.step-card {
    text-align: center;
}

.step-card h3 {
    font-weight: 600;
}

.step-icon {
    width: 100%;
    max-width: 307px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-upload {
    background: var(--light-blue);
    border: 5px dashed var(--primary);
    border-radius: 20px;
}

.step-upload svg {
    width: 50%;
    height: auto;
}

.icon-inner {
    width: 64px;
    height: 80px;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-doc {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 4px;
}

.step-pick {
    background: var(--white);
    overflow: hidden;
    position: relative;
}

/* Carousel Animation */
.carousel-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.carousel-row {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.carousel-track {
    display: flex;
    gap: 0.5rem;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.carousel-row-left .carousel-track {
    animation-name: scrollLeft;
}

.carousel-row-right .carousel-track {
    animation-name: scrollRight;
}

.carousel-track img {
    height: 140px;
    width: auto;
    border-radius: 12px;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.carousel-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 2;
}

.carousel-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.carousel-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.bars {
    display: flex;
    gap: 0.5rem;
}

.bar {
    width: 16px;
    height: 64px;
    border-radius: 4px;
}

.bar-primary { background: var(--primary); }
.bar-secondary { background: var(--secondary); }
.bar-gray { background: rgba(35, 35, 35, 0.3); }

.step-download {
    background: var(--primary);
    border-radius: 20px;
}

.step-download svg {
    width: 60%;
    height: auto;
}

.download-icon {
    color: var(--primary);
    font-size: 3rem;
    background: var(--white);
    width: 64px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.small-text {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 1rem;
}

/* Value Section */
.value-section {
    padding: 80px 0;
    background: var(--white);
}

.value-left-head {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.two-col-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 3rem;
    align-items: center;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-text {
    color: var(--gray);
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.problem-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;

}

.icon-x {
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    margin-top: 4px;
}

.problem-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.problem-desc {
    font-size: 16px;
    color: var(--gray);
}

.solution-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
}

.solution-intro {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 1rem;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 16px;
}

.check {
    color: var(--primary);
}

.cv-preview {
    background: url('images/problem-solution-bg.png') no-repeat center center;
    background-size: cover;
    padding: 2rem;
    border-radius: 20px;
    height: 100%;
    min-height: 650px;
}

#lottie-animation {
    width: 100%;
    height: 100%;
    min-height: 650px;
}

.cv-header {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1.5rem;
}

.cv-avatar {
    width: 48px;
    height: 48px;
    background: rgba(19, 117, 220, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.cv-info {
    flex: 1;
}

.cv-line {
    height: 12px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.cv-line-lg { width: 75%; }
.cv-line-md { width: 66%; }
.cv-line-sm { width: 50%; }
.cv-line-full { width: 100%; }

.cv-section {
    margin-bottom: 1.5rem;
}

.cv-section-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cv-item {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(19, 117, 220, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.75rem;
}

/* Templates Section */
.templates-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-center {
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.template-card {
    background: var(--white);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.template-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.template-preview {
    aspect-ratio: 210 / 297;
    background: #f5f5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.template-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.template-card h3 {
    text-align: center;
    font-weight: 600;
}

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

/* Use Cases Section */
.use-cases-section {
    padding: 80px 0;
    background: var(--white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.use-case-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(19, 117, 220, 0.1);
    padding: 2rem;
    border-radius: 15px;
    overflow: visible;
}

.use-case-card p {
    font-size: 18px;
    line-height: 1.6;
    position: relative;
}

.use-case-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.use-case-link:hover {
    gap: 0.75rem;
}

.use-case-link svg {
    flex-shrink: 0;
}

.use-case-large {
    grid-column: span 3;
}

.use-case-small {
    grid-column: span 2;
}

/* Responsive layout for use cases */
@media (max-width: 1024px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .use-case-large,
    .use-case-small {
        grid-column: span 1;
    }
    
    .use-case-card p {
        min-height: auto;
    }
}

.use-case-card h3 {
    margin-bottom: 1rem;
    position: relative;
}

.use-case-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    min-height: 200px;
}

.placeholder-box {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(19, 117, 220, 0.1), rgba(19, 117, 220, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.placeholder-secondary {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
}

.placeholder-gray {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

/* Before & After Section */
.before-after-section {
    padding: 80px 0;
    background: var(--white);
}

.comparison-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 3rem;
}

.comparison-grid > * {
    max-width: 555px;
    flex: 1 1 555px;
}



.comparison-box {
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.comparison-bad {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.comparison-good {
    background: #E7F1FB;
    border: 1px solid #8FC5FC;
    box-shadow: 0 0 40px rgba(124, 179, 237, 0.3);
}

.comparison-good .comparison-header p {
    color: #0754A4;
}

.comparison-good .comparison-row {
    border-bottom-color: rgba(7, 84, 164, 0.2);
}

.comparison-good .comparison-label {
    font-weight: 600;
    color: #0754A4;
}

.comparison-good .comparison-value {
    color: #0754A4;
}

.comparison-box h3 {
    margin-bottom: 0;
}

.comparison-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.comparison-header p {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray);
    margin: 0;
}

.comparison-list-new {
    display: flex;
    flex-direction: column;
}

.comparison-row {
    display: grid;
    grid-template-columns: 40% 60%;
    padding: 24px 0;
    border-bottom: 1px solid #EAEAEA;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
}

.comparison-value {
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.icon-bad {
    color: #ef4444;
    flex-shrink: 0;
}

.icon-good {
    color: #22c55e;
    flex-shrink: 0;
}

.cv-mock-bad, .cv-mock-good {
    aspect-ratio: 210 / 297;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.cv-mock-bad {
    background: var(--white);
    border: 2px dashed #d0d0d0;
}

.cv-mock-good {
    background: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    color: var(--primary);
    font-weight: 600;
}

/* Social Proof Section */
.social-proof-section {
    padding: 80px 0;
    background: var(--white);
}

.social-proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.social-proof-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-proof-text {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.hireups-badge {
    max-width: 200px;
    margin-top: 1rem;
}

.social-proof-image-wrapper {
    height: 520px;
    border-radius: 15px;
    overflow: hidden;
}

.social-proof-image {
    object-fit: cover;  
    object-position: center;
    width: 100%;
    height: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 0 auto;
}

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

.faq-item {
    background: #E7F1FB;
    border: 1px solid #8FC5FC;
    border-radius: 12px;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: #0754A4;
    margin: 0;
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 16px;
    font-weight: 500;
    color: #0754A4;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    line-height: 1.6;
}

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

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-box {
    width: 100%;
    border-radius: 20px;
    background-image: url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 484px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    color: var(--dark);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 56px;
}

.btn-success {
    background: #056050;
    color: var(--white);
    border: none;
    margin-bottom: 16px;
}

.btn-success:hover {
    background: #044a3d;
    box-shadow: 0 4px 8px rgba(5, 96, 80, 0.25);
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.payment-methods img {
    height: 15.5px;
    width: auto;
}

/* CTA Sample Images */
.cta-sample-left {
    position: absolute;
    bottom: -80px;
    left: 50px;
    width: 300px;
    height: auto;
    z-index: 1;
    opacity: 0;
    transform: translateY(100px) rotate(0deg);
    animation: slideUpRotate .5s ease-out forwards;
    animation-play-state: paused;
}

.cta-sample-left.visible {
    animation-play-state: running;
}

@keyframes slideUpRotate {
    0% {
        opacity: 0;
        transform: translateY(100px) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(-11.15deg);
    }
}

.cta-sample-right-1 {
    position: absolute;
    bottom: -40px;
    right: 40px;
    width: 290px;
    height: auto;
    z-index: 1;
    opacity: 0;
    transform: translateY(150px) rotate(0deg);
    animation: slideUpRotateRight1 .5s ease-out forwards;
    animation-play-state: paused;
}

.cta-sample-right-1.visible {
    animation-play-state: running;
}

@keyframes slideUpRotateRight1 {
    0% {
        opacity: 0;
        transform: translateY(100px) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(9.15deg);
    }
}

.cta-sample-right-2 {
    position: absolute;
    bottom: -260px;
    right: 70px;
    width: 320px;
    height: auto;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px) rotate(0deg);
    animation: slideUpRotateRight2 .5s ease-out forwards;
    animation-play-state: paused;
}

.cta-sample-right-2.visible {
    animation-play-state: running;
}

@keyframes slideUpRotateRight2 {
    0% {
        opacity: 0;
        transform: translateY(50px) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(-14.55deg);
    }
}

/* Footer */
.footer {
    padding: 60px 0;
    background: var(--white);
    color: var(--dark);
    margin-bottom: 64px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-1 {
    width: 320px;
    gap: 16px;
}

.footer-col-2 {
    width: 320px;
}

.footer-col-3 {
    width: 194px;
}

.footer-col-4 {
    width: 320px;
    gap: 16px;
}

.footer-desc {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.6;
    margin: 0;
}

.footer-desc a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-desc a:hover {
    opacity: 0.8;
}

.footer-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 16px 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-list li {
    margin: 0;
}

.footer-list a {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-col-4 .btn {
    margin-top: 16px;
    width: 100%;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
/* Tablet and below */
@media (max-width: 1024px) {
    .container {
        max-width: 90vw;
        padding: 0 1rem;
    }
    
    /* Hide arrows on tablet and mobile */
    .arrow-top,
    .arrow-bottom {
        display: none !important;
    }
    
    /* Hide cv-preview and lottie animations on tablet and mobile */
    .cv-preview,
    lottie-player,
    #lottie-animation {
        display: none !important;
    }
    
    /* Show hamburger, hide desktop nav */
    .nav-links {
        display: none !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .mobile-menu:not(.active) {
        display: none;
    }
    
    .nav-content {
        height: 70px;
    }
    
    /* Ensure navbar background is transparent/clean on mobile */
    .navbar {
        background: transparent;
    }
    
    .hero {
        padding: 120px 20px 60px;
    }
    
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .templates-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .comparison-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .comparison-grid > * {
        max-width: 100%;
        flex: 1 1 auto;
    }
    
    .social-proof-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        max-width: 90vw;
        padding: 0 1rem;
    }
    
    /* Scale down logo on very small screens */
    .logo svg {
        width: 100px;
        height: auto;
    }
    
    h1, .hero-title {
        font-size: 40px;
    }
    
    h2, .section-title, .section-title-center, .cta-title {
        font-size: 32px;
    }
    
    h3 {
        font-size: 28px;
    }
    
    h4 {
        font-size: 20px;
    }
    
    p, body {
        font-size: 16px;
    }
    
    /* Hide arrows on mobile */
    .arrow-top,
    .arrow-bottom {
        display: none !important;
    }
    
    /* Hide cv-preview and lottie animations on mobile */
    .cv-preview,
    lottie-player,
    #lottie-animation {
        display: none !important;
    }
    
    /* Mobile navigation */
    .nav-links {
        display: none !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .mobile-menu:not(.active) {
        display: none;
    }
    
    .mobile-menu {
        top: 70px;
    }
    
    .nav-content {
        height: 60px;
    }
    
    .navbar {
        padding-top: 10px;
    }
    
    .hero {
        padding: 120px 20px 40px;
    }
    
    .hero-subtitle {
        margin-bottom: 3rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .comparison-grid > * {
        max-width: 100%;
        flex: 1 1 auto;
    }
    
    .social-proof-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .btn {
        font-size: 16px;
        padding: 8px 16px;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 18px;
    }
    
    .cta-sample-left,
    .cta-sample-right-1,
    .cta-sample-right-2 {
        display: none;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-col-1,
    .footer-col-2,
    .footer-col-3,
    .footer-col-4 {
        width: 100%;
    }
    
    .value-section,
    .templates-section,
    .use-cases-section,
    .before-after-section,
    .social-proof-section,
    .faq-section,
    .final-cta-section {
        padding: 60px 0;
    }
    
    .comparison-box {
        padding: 24px 16px;
    }
    
    .comparison-row {
        grid-template-columns: 35% 65%;
        padding: 16px 0;
    }
    
    .comparison-label,
    .comparison-value {
        font-size: 14px;
    }
    
    .faq-question {
        font-size: 18px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    .social-proof-image-wrapper {
        height: 300px;
    }
}

/* Waitlist Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    max-width: 540px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    z-index: 10001;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.2s ease;
    border-radius: 8px;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--dark);
}

.modal-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.modal-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input {
    font-family: 'Fellix', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    background: var(--white);
    color: var(--dark);
    transition: all 0.2s ease;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(19, 117, 220, 0.1);
}

.form-group input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.waitlist-form .btn-full-width {
    margin-top: 8px;
}

.success-message {
    text-align: center;
    padding: 24px 0;
}

.success-message svg {
    margin: 0 auto 24px;
}

.success-message h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 12px 0;
}

.success-message p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.success-message strong {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 32px 24px;
        border-radius: 16px;
        width: 95%;
    }

    .modal-title {
        font-size: 28px;
    }

    .modal-text {
        font-size: 16px;
    }

    .success-message h3 {
        font-size: 24px;
    }

    .success-message p {
        font-size: 16px;
    }
    
    .form-group input {
        font-size: 16px;
    }
}

/* Thank You Page */
.thank-you-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px;
    background: linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 100%);
}

.thank-you-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.success-icon {
    margin: 0 auto 32px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.thank-you-text {
    font-size: 20px;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.6;
    margin: 0 0 64px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.what-happens-next {
    margin: 64px 0;
}

.what-happens-next h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 40px 0;
}

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

.step-card {
    background: var(--white);
    text-align: center;
    transition: all 0.3s ease;
}


.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 12px 0;
}

.step-card p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

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

.social-proof-mini {
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.small-text {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

@media (max-width: 768px) {
    .thank-you-title {
        font-size: 32px;
    }

    .thank-you-text {
        font-size: 18px;
    }

    .what-happens-next h2 {
        font-size: 24px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

/* Legal Pages (Privacy Policy, Terms, etc.) */
.legal-page {
    min-height: calc(100vh - 80px);
    padding: 120px 20px 80px;
    background: var(--white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.legal-update {
    font-size: 16px;
    color: var(--gray);
    margin: 0 0 48px 0;
}

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

.legal-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.legal-section p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section ul li {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.legal-section ul li:last-child {
    margin-bottom: 0;
}

.legal-section ul li strong {
    color: var(--dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 100px 20px 60px;
    }

    .legal-content h1 {
        font-size: 32px;
    }

    .legal-section h2 {
        font-size: 24px;
    }
}

