/* ========================================
   Global Styles & Reset
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Soft Blue Gradient */
    --primary-blue: #5B9BD5;
    --primary-light: #7CB4E8;
    --primary-dark: #4A7FB8;
    --accent-teal: #50B8B8;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F7F9FC;
    --medium-gray: #E5E9F2;
    --text-gray: #6B7280;
    --dark-gray: #374151;
    --black: #1F2937;
    
    /* Semantic Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --info: #3B82F6;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Noto Sans JP', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Inter', 'Noto Sans JP', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

section {
    padding: 5rem 0;
}

section:nth-child(even):not(.process):not(.final-cta) {
    background: var(--light-gray);
}

section:nth-child(odd):not(.process):not(.final-cta) {
    background: var(--white);
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* ========================================
   Header
   ======================================== */
.header {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.language-toggle .lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--light-gray);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.language-toggle .lang-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5f8d 50%, #3d7fb8 100%);
    padding: 4rem 0 4rem;
    color: var(--white);
    overflow: hidden;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(99, 179, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(66, 153, 225, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(49, 130, 206, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.92) 0%, rgba(44, 95, 141, 0.85) 50%, rgba(61, 127, 184, 0.78) 100%);
}

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

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

.hero-content {
    text-align: left;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: 700;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.stat-item-wide {
    grid-column: span 1;
}

.stat-countries {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-top: 0.5rem;
    line-height: 1.4;
    font-style: italic;
}

.hero-cta {
    margin-bottom: 0;
}

.btn-hero {
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 450px;
}

.hero-illustration {
    position: relative;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-illustration > i {
    font-size: 7rem;
    color: rgba(255, 255, 255, 0.9);
}

.illustration-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.element i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.element-1 {
    top: -10px;
    right: 20px;
    animation-delay: 0s;
}

.element-2 {
    bottom: 20px;
    left: -10px;
    animation-delay: 1s;
}

.element-3 {
    bottom: -10px;
    right: 40px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-features-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.mini-feature {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
}

.mini-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.mini-feature i {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.mini-feature span {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    display: block;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* ========================================
   About Section
   ======================================== */
.about {
    background: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--light-gray), transparent);
}

.about-content {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.about-text {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--medium-gray);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-text::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(91, 155, 213, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin: 0;
    color: var(--dark-gray);
    position: relative;
    z-index: 1;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--medium-gray);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(91, 155, 213, 0.2);
    border-color: var(--primary-blue);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card i {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin: 0;
    color: var(--black);
    font-weight: 600;
}

/* ========================================
   Job Types Section
   ======================================== */
.job-types {
    background: var(--light-gray);
    position: relative;
}

.job-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.job-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.job-item::after {
    content: '';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.job-item:hover {
    background: var(--white);
    box-shadow: 0 8px 25px rgba(91, 155, 213, 0.15);
    transform: translateX(8px);
    border-left-color: var(--success);
}

.job-item:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(5px);
}

.job-item i {
    font-size: 1.75rem;
    color: var(--success);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
}

.job-item span {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
    line-height: 1.5;
}

/* ========================================
   Profiles Section
   ======================================== */
.profiles {
    background: var(--white);
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.profile-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--medium-gray);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    opacity: 0.05;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(91, 155, 213, 0.2);
    border-color: var(--primary-blue);
}

.profile-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    box-shadow: 0 8px 20px rgba(91, 155, 213, 0.3);
    border: 4px solid var(--white);
    position: relative;
    z-index: 1;
}

.profile-icon i {
    font-size: 2.25rem;
    color: var(--white);
}

.profile-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: var(--dark-gray);
    position: relative;
    z-index: 1;
}

/* ========================================
   Process Section
   ======================================== */
.process {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5f8d 100%) !important;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.process .section-header h2 {
    color: var(--white);
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.4);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

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

.step-content h3 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.step-arrow {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    margin: 0.5rem 0;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* ========================================
   Compensation Section
   ======================================== */
.compensation {
    background: var(--light-gray);
}

.compensation-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.compensation-box {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--medium-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.compensation-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal));
}

.compensation-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(91, 155, 213, 0.15);
    border-color: var(--primary-blue);
}

.comp-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    box-shadow: 0 8px 20px rgba(91, 155, 213, 0.3);
}

.comp-icon i {
    font-size: 2.25rem;
    color: var(--white);
}

.compensation-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1.75rem;
    color: var(--black);
    font-weight: 700;
}

.compensation-box ul {
    list-style: none;
}

.compensation-box ul li {
    padding: 1rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.compensation-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.4rem;
}

.requirements-box {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 3px solid var(--primary-blue);
}

.requirements-box::before {
    background: linear-gradient(90deg, var(--success), var(--primary-green));
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%) !important;
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--primary-blue);
}

.cta-content .btn-primary:hover {
    background: var(--light-gray);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-logo-section {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    display: block;
    /* ロゴを白く反転させる */
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--medium-gray);
}

.footer-contact i {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid var(--dark-gray);
    padding-top: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--medium-gray);
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links-bottom a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: var(--primary-blue);
}

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

/* Large Desktop - for Mac large screens */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 3rem;
        max-width: 800px;
    }
    
    .hero-subtitle {
        font-size: 1.35rem;
        max-width: 800px;
    }
}

/* Desktop - standard */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-title {
        font-size: 2.65rem;
        max-width: 750px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        max-width: 750px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 3rem 0 3rem;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.85rem;
        line-height: 1.45;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-item-wide {
        flex-basis: 100%;
    }
    
    .stat-countries {
        font-size: 0.7rem;
    }
    
    .hero-illustration {
        width: 220px;
        height: 220px;
    }
    
    .hero-illustration > i {
        font-size: 5rem;
    }
    
    .element {
        width: 50px;
        height: 50px;
    }
    
    .element i {
        font-size: 1.25rem;
    }
    
    .section-header h2 {
        font-size: 1.85rem;
    }
    
    .job-list,
    .profile-grid,
    .compensation-content {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 2.5rem 0 2.5rem;
        min-height: auto;
    }
    
    .hero-grid {
        gap: 2rem;
    }
    
    .hero-label {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.5;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 1rem;
    }
    
    .stat-item {
        flex: 0 0 auto;
    }
    
    .stat-item-wide {
        flex-basis: 100%;
        margin-top: 0.5rem;
    }
    
    .stat-countries {
        font-size: 0.65rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .btn-hero {
        padding: 1rem 2rem;
        font-size: 1.05rem;
        width: 100%;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .hero-illustration {
        width: 180px;
        height: 180px;
        margin-bottom: 1.5rem;
    }
    
    .hero-illustration > i {
        font-size: 4rem;
    }
    
    .element {
        width: 40px;
        height: 40px;
    }
    
    .element i {
        font-size: 1rem;
    }
    
    .hero-features-mini {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .mini-feature {
        padding: 0.75rem;
    }
    
    .mini-feature i {
        font-size: 1.5rem;
    }
    
    .mini-feature span {
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.65rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .logo img {
        height: 45px;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero-cta,
    .final-cta,
    .footer {
        display: none;
    }
}