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

:root {
    --primary-purple: #4F46E5;
    --primary-dark: #1e1b4b;
    --primary-light: #818cf8;
    --accent-lime: #C9F94A;
    --headline-white: #F5F7FF;
    --body-text: #D6DBFF;
    --button-text: #1F2937;
    --text-dark: #1a1a2e;
    --text-gray: #64748b;
    --bg-light: #f8fafc;
    --bg-purple-light: #e0dff7;
    --white: #ffffff;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s ease;
}

body {
    font-family: "Inter", "Inter Placeholder", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.version-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-purple);
    background: var(--bg-purple-light);
    padding: 2px 8px;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-toggle::after {
    content: '▾';
    margin-left: 6px;
    font-size: 12px;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1001;
    margin-top: 12px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.dropdown-item:hover {
    background: var(--bg-purple-light);
    color: var(--primary-purple);
}

.dropdown-item.disabled {
    color: var(--text-gray);
    cursor: not-allowed;
    font-style: italic;
}

.dropdown-item.disabled:hover {
    background: transparent;
    color: var(--text-gray);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--accent-lime);
    color: var(--button-text);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 249, 74, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--headline-white);
    border: 2px solid var(--headline-white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--primary-purple);
    padding: 180px 0 120px;
    overflow: hidden;
    text-align: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg-gradient {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    color: var(--body-text);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.4;
    line-height: 1.6;
}

.hero-title {
    font-size: 56px;
    font-weight: 400;
    color: var(--headline-white);
    margin-bottom: 32px;
    line-height: 1.2;
}

.highlight {
    color: var(--accent-lime);
}

.hero-tagline {
    font-size: 20px;
    color: var(--body-text);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-description {
    font-size: 18px;
    color: var(--body-text);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Demo Section */
/* Global Network Visualization */
.global-network-viz {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: visible;
}

.product-demo {
    padding: 80px 0;
    background: var(--bg-light);
}

.screenshot-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-placeholder {
    background: var(--bg-light);
    padding: 80px 40px;
    text-align: center;
    border: 2px dashed #d1d5db;
}

.screenshot-placeholder p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.placeholder-hint {
    font-size: 14px;
    color: var(--text-gray);
}

.placeholder-hint code {
    background: #e5e7eb;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
    color: var(--primary-dark);
}

/* Logos Section */
.logos-section {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
    overflow: hidden;
}

.section-title {
    font-size: 32px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 48px;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-gray);
    margin-top: 32px;
    margin-bottom: 0;
}

.logos-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logos-carousel {
    display: flex;
    align-items: center;
    gap: 100px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

.logo-item {
    flex-shrink: 0;
    width: 150px;
    height: 70px;
    display: block;
}

.logo-item img {
    width: 150px;
    height: 70px;
    object-fit: contain;
    display: block;
}

/* Global Marketplace Section */
.global-marketplace {
    padding: 100px 0;
    background: var(--bg-purple-light);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-heading {
    font-size: 36px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 32px;
    line-height: 1.3;
}

.section-description {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.result-highlight {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 40px;
}

.subsection-heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.feature-list li {
    font-size: 18px;
    color: var(--text-gray);
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-lime);
    font-weight: 700;
    font-size: 18px;
}

/* Marketplace Cards Container */
.marketplace-cards-container {
    position: relative;
    width: 100%;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.role-card-marketplace {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 12px 40px rgba(79, 70, 229, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.role-card-marketplace:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(79, 70, 229, 0.25);
}

.role-card-content-marketplace {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.candidate-image-container {
    position: relative;
    width: 100%;
}

.candidate-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 500;
}

.candidate-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.marketplace-cards-container .savings-badge,
.candidate-image-container .savings-badge {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: #D1FAE5;
    color: #065F46;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: 10;
}

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

.role-title-marketplace {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 8px 0;
}

.role-location-marketplace {
    font-size: 18px;
    color: var(--text-gray);
    margin: 0;
}

/* Circular Flags */
.circular-flag {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 5;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.flag-emoji {
    font-size: 40px;
    line-height: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.floating-flag {
    position: absolute;
    font-size: 48px;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Individual flag positions and animations */
.flag-1 {
    top: 10%;
    left: 15%;
    animation-name: float1;
}

.flag-2 {
    top: 15%;
    right: 20%;
    animation-name: float2;
    animation-delay: 0.5s;
}

.flag-3 {
    top: 40%;
    left: 5%;
    animation-name: float3;
    animation-delay: 1s;
}

.flag-4 {
    top: 45%;
    right: 8%;
    animation-name: float4;
    animation-delay: 1.5s;
}

.flag-5 {
    bottom: 20%;
    left: 18%;
    animation-name: float5;
    animation-delay: 2s;
}

.flag-6 {
    bottom: 25%;
    right: 15%;
    animation-name: float6;
    animation-delay: 2.5s;
}

.flag-7 {
    top: 25%;
    left: 50%;
    animation-name: float7;
    animation-delay: 3s;
}

.flag-8 {
    bottom: 10%;
    left: 45%;
    animation-name: float8;
    animation-delay: 3.5s;
}

/* Circular flag positions - arranged in a circle to avoid overlap */
/* 12 o'clock position */
.flag-circle-1 {
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
    animation-name: float1;
}

/* 1 o'clock */
.flag-circle-2 {
    top: 12%;
    right: 20%;
    animation-name: float2;
    animation-delay: 0.3s;
}

/* 2 o'clock */
.flag-circle-3 {
    top: 25%;
    right: 8%;
    animation-name: float3;
    animation-delay: 0.6s;
}

/* 3 o'clock */
.flag-circle-4 {
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    animation-name: float4;
    animation-delay: 0.9s;
}

/* 4 o'clock */
.flag-circle-5 {
    bottom: 25%;
    right: 8%;
    animation-name: float5;
    animation-delay: 1.2s;
}

/* 5 o'clock */
.flag-circle-6 {
    bottom: 12%;
    right: 20%;
    animation-name: float6;
    animation-delay: 1.5s;
}

/* 6 o'clock */
.flag-circle-7 {
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    animation-name: float7;
    animation-delay: 1.8s;
}

/* 7 o'clock */
.flag-circle-8 {
    bottom: 12%;
    left: 20%;
    animation-name: float8;
    animation-delay: 2.1s;
}

/* 8 o'clock */
.flag-circle-9 {
    bottom: 25%;
    left: 8%;
    animation-name: float1;
    animation-delay: 2.4s;
}

/* 9 o'clock */
.flag-circle-10 {
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
    animation-name: float2;
    animation-delay: 2.7s;
}

/* 10 o'clock */
.flag-circle-11 {
    top: 25%;
    left: 8%;
    animation-name: float3;
    animation-delay: 3s;
}

/* 11 o'clock */
.flag-circle-12 {
    top: 12%;
    left: 20%;
    animation-name: float4;
    animation-delay: 3.3s;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, -15px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-12px, 10px) rotate(-5deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, 8px) rotate(3deg); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, -12px) rotate(-4deg); }
}

@keyframes float5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(8px, 15px) rotate(4deg); }
}

@keyframes float6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-15px, -10px) rotate(-3deg); }
}

@keyframes float7 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(12px, 12px) rotate(6deg); }
}

@keyframes float8 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-8px, -15px) rotate(-5deg); }
}

/* Headhunters Section */
.headhunters-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.headhunters-section .section-subtitle {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.headhunters-section .section-description {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.headhunters-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.headhunter-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.headhunter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.headhunter-image {
    width: 200px;
    height: 250px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, #e0dff7, #d4d3f5);
    margin: 0 auto 20px;
}

.headhunter-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.headhunter-title {
    font-size: 14px;
    color: var(--text-gray);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.section-label {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.center {
    text-align: center;
}

.steps-container {
    margin-top: 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.step:last-child {
    margin-bottom: 0;
}

.step-image-container {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.step-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
}

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

.job-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.job-card p {
    margin-bottom: 8px;
    color: var(--text-gray);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.tag {
    padding: 6px 12px;
    background: var(--bg-purple-light);
    color: var(--primary-purple);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.hiring-manager {
    margin-top: 20px;
}

.manager-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.manager-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-light));
}

.success-badge {
    background: var(--primary-purple);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.hiring-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 48px 32px;
}

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

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-light));
    margin: 0 auto 16px;
}

.team-avatar.large {
    width: 120px;
    height: 120px;
}

.specialty-badge {
    background: var(--accent-lime);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.team-member {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0dff7, #d4d3f5);
}

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

.candidate-header {
    position: relative;
    margin-bottom: 20px;
}

.candidate-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0dff7, #d4d3f5);
    margin: 0 auto;
    position: relative;
}

.candidate-badge {
    width: 32px;
    height: 32px;
    background: var(--primary-purple);
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50px);
    border: 3px solid var(--white);
}

.candidate-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.candidate-card p {
    color: var(--text-gray);
    margin-bottom: 4px;
}

.match-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin: 16px 0;
}

.candidate-footer {
    margin-top: 24px;
}

.recruiter-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 16px 0;
}

.recruiter-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-light));
}

.candidate-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.candidate-actions a {
    color: var(--primary-purple);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

/* Hiring Decision Visual (Step 4) */
.hiring-decision {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.decision-header h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 24px;
    font-weight: 600;
}

.candidate-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.candidate-item {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
}

.candidate-item.approved {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.candidate-item.pending {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.approve-btn {
    width: 100%;
    padding: 12px 24px;
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.approve-btn:hover {
    background: #4338CA;
}

.step-text {
    text-align: left;
    flex: 1;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-weight: 600;
}

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

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

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

.comparison-card {
    background: #f9fafb;
    border-radius: 24px;
    padding: 56px 48px;
    text-align: left;
    box-shadow: none;
}

.comparison-card.caddie-way {
    background: var(--white);
    border: 2px solid var(--primary-purple);
    box-shadow: 0 4px 20px rgba(103, 126, 234, 0.15);
}

.comparison-card h3 {
    font-size: 36px;
    margin-bottom: 48px;
    color: var(--primary-dark);
    font-weight: 700;
}

.comparison-item {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
    text-align: left;
    align-items: flex-start;
}

.comparison-item:last-child {
    margin-bottom: 0;
}

.comparison-item > div {
    text-align: left;
    flex: 1;
}

.icon-cross,
.icon-check {
    min-width: 24px;
    max-width: 24px;
    width: 24px;
    min-height: 24px;
    max-height: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.icon-cross {
    background: #fee2e2;
    position: relative;
}

.icon-cross::before,
.icon-cross::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #ef4444;
}

.icon-cross::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.icon-cross::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.icon-check {
    background: var(--primary-purple);
    position: relative;
}

.icon-check::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.comparison-item h4 {
    font-size: 22px;
    margin: 0 0 12px 0;
    color: var(--primary-dark);
    text-align: left;
    font-weight: 600;
}

.comparison-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    text-align: left;
    margin: 0;
}


/* Roles Hero Section */
.roles-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    text-align: center;
}

.roles-hero-title {
    font-size: 56px;
    font-weight: 400;
    color: white;
    margin-bottom: 32px;
    line-height: 1.2;
}

.roles-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

/* Pricing Section */
.pricing-section {
    padding: 40px 0 60px;
    background: var(--bg-light);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 30px auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 12px 40px rgba(79, 70, 229, 0.15);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--primary-purple);
    border-width: 3px;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-purple);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 16px;
}

.pricing-icon {
    font-size: 42px;
    margin-bottom: 8px;
}

.pricing-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.pricing-subtitle {
    font-size: 15px;
    color: var(--text-gray);
}

.pricing-price {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
    line-height: 1;
}

.price-period {
    font-size: 17px;
    color: var(--text-gray);
    display: block;
    margin-top: 6px;
}

.pricing-fee {
    text-align: center;
    margin-bottom: 16px;
}

.pricing-fee p {
    font-size: 16px;
    color: var(--text-gray);
}

.pricing-fee strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.pricing-features {
    flex: 1;
    margin-bottom: 16px;
}

.features-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    margin-top: 14px;
}

.features-heading:first-child {
    margin-top: 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.5;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
    font-size: 16px;
}

.pricing-cta {
    width: 100%;
}

/* Pricing Add-on */
.pricing-addon {
    max-width: 1100px;
    margin: 30px auto 0;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border: 2px solid var(--primary-purple);
    border-radius: 20px;
    padding: 24px 32px;
}

.addon-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.addon-content .btn {
    background: var(--primary-purple);
    color: white;
    border: 2px solid var(--primary-purple);
    white-space: nowrap;
}

.addon-content .btn:hover {
    background: #5b50d6;
    border-color: #5b50d6;
    transform: translateY(-2px);
}

.addon-info {
    flex: 1;
}

.addon-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.addon-name {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.addon-description {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

/* Uber CTA Section */
.uber-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #818cf8 100%);
    text-align: center;
}

.uber-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--white);
}

/* What's Possible Section */
.whats-possible {
    padding: 140px 0;
    background: var(--bg-light);
}

.whats-possible .section-label {
    text-align: center;
    color: var(--primary-purple);
}

.whats-possible .section-heading {
    margin-bottom: 64px;
}

.roles-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 48px;
}

.roles-carousel {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: scrollRoles 30s linear infinite;
    width: max-content;
}

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

.role-card-marketplace {
    flex: 0 0 auto;
    width: 340px;
}

.popular-roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.popular-role-card {
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: var(--border-radius-lg);
    padding: 28px;
    transition: var(--transition);
    cursor: pointer;
}

.popular-role-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.12);
    transform: translateY(-4px);
}

.role-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.role-icon {
    width: 48px;
    height: 48px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
}

.savings-badge-lg {
    padding: 8px 14px;
    background: #D1FAE5;
    color: #065F46;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popular-role-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.popular-role-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.role-salary-comparison {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.comparison-item .label {
    color: var(--text-gray);
    font-weight: 500;
}

.comparison-item .amount {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 16px;
}

.comparison-item .strikethrough {
    text-decoration: line-through;
    color: var(--text-gray);
    font-weight: 500;
}

.comparison-item.highlighted {
    padding: 12px;
    background: rgba(79, 70, 229, 0.05);
    border-radius: 8px;
    margin-top: 4px;
}

.comparison-item.highlighted .label {
    color: var(--primary-purple);
    font-weight: 600;
}

.comparison-item.highlighted .amount {
    color: var(--primary-purple);
    font-weight: 700;
}

.view-all-roles-container {
    text-align: center;
    margin-top: 48px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--primary-dark);
    text-align: center;
}

.testimonials-section .section-label {
    color: var(--primary-light);
}

.testimonials-section .section-heading {
    color: var(--white);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-light));
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.company-logo {
    width: 80px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0;
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.testimonial-text {
    color: var(--white);
    font-size: 18px;
    line-height: 1.6;
}

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

.faq-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 48px;
}

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

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

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

.faq-question:hover {
    color: var(--primary-purple);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: var(--bg-purple-light);
    text-align: center;
}

.final-cta-title {
    font-size: 42px;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 40px;
    line-height: 1.3;
}

/* Footer */
.footer {
    background: var(--white);
    padding: 60px 0 32px;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 60px;
    justify-content: flex-end;
}

.footer-column h4 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
    color: var(--text-gray);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--primary-purple);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }

    .section-heading {
        font-size: 32px;
    }
}

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

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

    .hero-title {
        font-size: 36px;
    }

    .roles-hero-title {
        font-size: 36px;
    }

    .roles-hero-description {
        font-size: 16px;
    }

    .hero-description br,
    .hero-subtitle br {
        display: none;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
        text-align: center;
    }

    .global-network-viz {
        padding: 60px 0;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .screenshot-container {
        border-radius: var(--border-radius);
    }

    .floating-flags-container {
        height: 400px;
    }

    .roles-carousel {
        gap: 24px;
    }

    .role-card-marketplace {
        width: 300px;
        padding: 20px;
    }

    .candidate-image-placeholder,
    .candidate-image {
        height: 380px;
    }

    .marketplace-cards-container .savings-badge {
        font-size: 13px;
        padding: 8px 16px;
    }

    .role-title-marketplace {
        font-size: 22px;
    }

    .role-location-marketplace {
        font-size: 16px;
    }

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

    .step {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

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

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 48px auto;
    }

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

    .addon-content .btn {
        width: 100%;
    }

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

    .testimonials-carousel {
        grid-template-columns: 1fr;
    }

    .popular-roles-grid {
        grid-template-columns: 1fr;
    }

    .popular-role-card {
        padding: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .uber-title {
        font-size: 36px;
    }

    .final-cta-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-heading {
        font-size: 32px;
    }

    .headhunters-carousel {
        grid-template-columns: 1fr;
    }

    .logos-carousel {
        gap: 40px;
    }

    .logo-item {
        width: 120px;
        height: 60px;
        padding: 15px;
    }

    .roles-carousel {
        gap: 16px;
    }

    .role-card-marketplace {
        width: 280px;
        padding: 16px;
    }

    .candidate-image-placeholder,
    .candidate-image {
        height: 320px;
    }

    .marketplace-cards-container .savings-badge {
        font-size: 11px;
        padding: 6px 12px;
        bottom: 12px;
    }

    .role-title-marketplace {
        font-size: 18px;
    }

    .role-location-marketplace {
        font-size: 14px;
    }
}

/* Additional mobile pricing styles */
@media (max-width: 480px) {
    .pricing-card {
        padding: 32px 20px;
    }

    .pricing-title {
        font-size: 24px;
    }

    .price-amount {
        font-size: 44px;
    }

    .addon-name {
        font-size: 24px;
    }

    .pricing-addon {
        padding: 28px 20px;
    }
}

/* Feature Pages Styles */
.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.feature-section {
    padding: 100px 0;
    background: white;
}

.feature-section.alt {
    background: var(--bg-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.capabilities-list {
    max-width: 900px;
    margin: 48px auto 0;
}

.capability-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.capability-icon {
    min-width: 28px;
    max-width: 28px;
    width: 28px;
    min-height: 28px;
    max-height: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-purple);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.capability-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 8px 0;
}

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

.callout-box {
    max-width: 700px;
    margin: 48px auto 0;
    padding: 24px 32px;
    background: rgba(103, 126, 234, 0.1);
    border-left: 4px solid var(--primary-purple);
    border-radius: 8px;
}

.callout-box p {
    margin: 0;
    font-size: 18px;
    color: var(--primary-dark);
}

.example-queries {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 48px auto 0;
}

.query-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 2px solid var(--bg-light);
    font-size: 16px;
    color: var(--primary-dark);
    font-weight: 500;
}

.query-card p {
    margin: 0;
}

.anti-agency-section {
    padding: 80px 0;
    background: var(--primary-dark);
    text-align: center;
}

.anti-agency-section .section-heading {
    color: white;
}

.anti-agency-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 24px auto 0;
    line-height: 1.8;
}

.final-cta {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.specialization-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 48px auto 0;
}

.spec-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

.process-steps {
    max-width: 900px;
    margin: 48px auto 0;
}

.process-step {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    min-width: 48px;
    max-width: 48px;
    width: 48px;
    min-height: 48px;
    max-height: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-purple);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 8px 0;
}

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

.comparison-grid {
    max-width: 900px;
    margin: 48px auto 0;
}

.comparison-benefit {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.benefit-icon {
    min-width: 28px;
    max-width: 28px;
    width: 28px;
    min-height: 28px;
    max-height: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-purple);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 16px;
}

.comparison-benefit h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 8px 0;
}

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

@media (max-width: 768px) {
    .hero-ctas {
        flex-direction: column;
    }

    .feature-grid,
    .example-queries,
    .specialization-grid {
        grid-template-columns: 1fr;
    }

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

/* Use Case Pages */
.use-case-benefits {
    max-width: 900px;
    margin: 48px auto 0;
}

.benefit-item {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 12px 0;
}

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

@media (max-width: 768px) {
    .benefit-item {
        gap: 16px;
        margin-bottom: 32px;
    }

    .benefit-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }

    .benefit-content h3 {
        font-size: 18px;
    }

    .benefit-content p {
        font-size: 15px;
    }
}
