/* =========================================
   CROSSOVER - Premium Recruitment Website
   Ultra-Modern CSS Design
   ========================================= */

/* Reset & Foundation */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables - Corporate Green Color Palette */
:root {
    /* Primary Green Colors */
    --primary-green: #2ECC71;
    --dark-green: #27AE60;
    --light-green: #58D68D;
    --very-light-green: #E8F8F5;
    --accent-green: #1ABC9C;
    --secondary-green: #48C9B0;
    
    /* Neutral Palette */
    --dark-navy: #1a1d29;
    --charcoal: #2d3748;
    --slate-gray: #4a5568;
    --cool-gray: #718096;
    --light-gray: #e2e8f0;
    --ultra-light: #f7fafc;
    --pure-white: #ffffff;
    
    /* Shadows & Effects */
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.07), 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 10px 25px rgba(0, 0, 0, 0.1), 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(46, 204, 113, 0.4);
    --hover-shadow: 0 5px 20px rgba(46, 204, 113, 0.3);
    
    /* Typography */
    --font-primary: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', 'Noto Sans JP', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Modern Color Accents */
    --accent-blue: #3498DB;
    --accent-purple: #9B59B6;
    --accent-orange: #E67E22;
    --accent-red: #E74C3C;
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(46, 204, 113, 0.9) 0%, rgba(26, 188, 156, 0.8) 100%);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Scroll animations and effects */
@media (prefers-reduced-motion: no-preference) {
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
    }
    
    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Parallax scrolling effect */
    .parallax-bg {
        transform: translateZ(0);
        will-change: transform;
    }
}

/* Accessibility: Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--pure-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Modern Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        transform: scale(0.9) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes flipInX {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateX(-90deg);
    }
    40% {
        transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        transform: perspective(400px) rotateX(10deg);
    }
    100% {
        opacity: 1;
        transform: perspective(400px) rotateX(0deg);
    }
}

@keyframes slideInUpBounce {
    0% {
        opacity: 0;
        transform: translateY(60px) scaleY(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) scaleY(1.1);
    }
    80% {
        transform: translateY(5px) scaleY(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
}

@keyframes zoomInRotate {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Page Header */
.page-header {
    background: var(--ultra-light);
    padding: calc(80px + var(--space-md)) 0 var(--space-2xl);
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: var(--space-sm);
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--slate-gray);
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: calc(90px + var(--space-lg)) 0 var(--space-md);
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb a {
    color: var(--primary-green);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* =========================================
   HEADER - Glass Morphism Design
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all var(--transition-base);
}

.logo img {
    height: 40px;
    width: auto;
    transition: all var(--transition-base);
}

.logo a:hover img {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: var(--space-md);
    animation: fadeInRight 0.8s ease 0.2s both;
}

.nav-link {
    position: relative;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--very-light-green);
    opacity: 0;
    transform: translateY(100%);
    transition: all var(--transition-base);
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    transform: translateY(0);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
    transform: translateY(-2px);
}

.apply-btn {
    background: var(--primary-green);
    color: var(--pure-white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-xl);
    font-weight: 600;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-base);
}

.apply-btn:hover {
    background: var(--dark-green);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

/* =========================================
   DROPDOWN NAVIGATION - Modern Interactive Design
   ========================================= */

/* Navigation Dropdown Container */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Toggle Button */
.dropdown-toggle {
    position: relative;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    cursor: pointer;
    background: none;
    border: none;
}

.dropdown-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--very-light-green);
    opacity: 0;
    transform: translateY(100%);
    transition: all var(--transition-base);
    z-index: -1;
}

.dropdown-toggle:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-toggle:hover {
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* Dropdown Arrow */
.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    color: var(--primary-green);
    transition: all var(--transition-base);
}

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

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(46, 204, 113, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-large);
    padding: var(--space-sm) 0;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all var(--transition-base);
    margin-top: var(--space-xs);
}

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

/* Dropdown Links */
.dropdown-link {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary-green);
    transition: width var(--transition-base);
}

.dropdown-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.1), transparent);
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
    animation: shimmer 2s infinite;
}

.dropdown-link:hover::before {
    width: 4px;
}

.dropdown-link:hover::after {
    opacity: 1;
    transform: translateX(100%);
}

.dropdown-link:hover {
    color: var(--primary-green);
    background: rgba(46, 204, 113, 0.05);
    padding-left: calc(var(--space-md) + 8px);
}

/* =========================================
   NAVIGATION CTA BUTTON - Modern Gradient Design
   ========================================= */
.nav-cta {
    position: relative;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    color: var(--pure-white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-xl);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-base);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-slow);
}

.nav-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover::after {
    opacity: 1;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--hover-shadow);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-cta:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: var(--shadow-medium);
}

/* =========================================
   MOBILE NAVIGATION - Modern Hamburger & Slide Menu
   ========================================= */

/* Modern Hamburger Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn:hover {
    background: rgba(46, 204, 113, 0.1);
    transform: scale(1.05);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

/* Hamburger Lines with Animation */
.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--charcoal);
    margin: 0;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
    position: relative;
}

.mobile-menu-btn span:nth-child(1) {
    transform: translateY(-8px);
}

.mobile-menu-btn span:nth-child(2) {
    transform: translateY(0);
}

.mobile-menu-btn span:nth-child(3) {
    transform: translateY(8px);
}

/* Hamburger to X Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(0);
    background: var(--primary-green);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(0);
    background: var(--primary-green);
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Slide Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85vw, 400px);
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(46, 204, 113, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    right: 0;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.15);
}

/* Mobile Navigation Header */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(46, 204, 113, 0.1);
}

.mobile-nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--charcoal);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all var(--transition-fast);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close:hover {
    background: rgba(46, 204, 113, 0.1);
    color: var(--primary-green);
    transform: scale(1.1);
}

/* Mobile Navigation List */
.mobile-nav-list {
    list-style: none;
    padding: var(--space-lg) 0;
    margin: 0;
}

.mobile-nav-item {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInMobile 0.4s ease forwards;
}

.mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav-item:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-item:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav-item:nth-child(5) { animation-delay: 0.3s; }
.mobile-nav-item:nth-child(6) { animation-delay: 0.35s; }

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    border-left: 4px solid transparent;
    position: relative;
    min-height: 44px;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    background: rgba(46, 204, 113, 0.08);
    color: var(--primary-green);
    border-left-color: var(--primary-green);
    transform: translateX(8px);
}

.mobile-nav-link.active {
    background: rgba(46, 204, 113, 0.12);
    color: var(--primary-green);
    border-left-color: var(--primary-green);
    font-weight: 600;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-green);
    opacity: 0;
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover::after,
.mobile-nav-link.active::after {
    opacity: 1;
}

/* Mobile CTA Button */
.mobile-nav-cta {
    margin: var(--space-lg);
    padding: 0;
}

.mobile-nav-cta .btn {
    width: 100%;
    justify-content: center;
    background: var(--primary-green);
    color: var(--pure-white);
    font-weight: 600;
    min-height: 48px;
    font-size: 1.1rem;
}

.mobile-nav-cta .btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

/* Mobile Menu Animation Keyframes */
@keyframes slideInMobile {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================
   HERO SECTION - Immersive Design
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary-green);
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

/* Dark overlay for hero section */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--pure-white);
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    animation: slideInUp 1s ease var(--transition-base);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
    animation: slideInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease 0.4s both;
}

/* =========================================
   BUTTONS - Premium Interactive Design
   ========================================= */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    overflow: hidden;
    min-width: 180px;
    /* Ensure visibility */
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--pure-white);
    border: 2px solid var(--primary-green);
    box-shadow: var(--shadow-medium);
    /* Ensure text visibility */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.btn-primary:focus,
.btn-primary:focus-visible {
    outline: 3px solid rgba(46, 204, 113, 0.5);
    outline-offset: 2px;
    background: var(--dark-green);
    box-shadow: var(--hover-shadow);
}

.btn-secondary {
    background: var(--pure-white);
    color: var(--primary-green);
    box-shadow: var(--shadow-medium);
}

.btn-secondary:hover {
    background: var(--ultra-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.1rem;
    min-width: 220px;
}

.btn-small {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
    min-width: 120px;
}

/* Orange Button Styles */
.btn-orange {
    background: linear-gradient(135deg, #ff6b35 0%, #f5551e 100%);
    color: var(--pure-white);
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-orange:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d9491a 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.btn-orange:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* Enhanced button styles */
.btn-orange::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-orange:hover::before {
    transform: translateX(100%);
}

/* =========================================
   SECTIONS - Modern Layout System
   ========================================= */
section {
    padding: var(--space-2xl) 0;
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--dark-navy);
    position: relative;
    animation: fadeInUp 0.8s ease both;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -var(--space-sm);
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-green);
    border-radius: var(--radius-sm);
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: var(--space-sm);
}

/* =========================================
   FEATURE CARDS - Glass Morphism
   ========================================= */
.features {
    background: var(--very-light-green);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23667eea' fill-opacity='0.02'%3E%3Cpath d='M20 20c0-11.046-8.954-20-20-20v20h20z'/%3E%3C/g%3E%3C/svg%3E");
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

/* Staggered Animation for Feature Cards */
.features-grid .feature-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease forwards;
}

.features-grid .feature-card:nth-child(1) { animation-delay: 0.2s; }
.features-grid .feature-card:nth-child(2) { animation-delay: 0.4s; }
.features-grid .feature-card:nth-child(3) { animation-delay: 0.6s; }
.features-grid .feature-card:nth-child(4) { animation-delay: 0.8s; }
.features-grid .feature-card:nth-child(5) { animation-delay: 1.0s; }
.features-grid .feature-card:nth-child(6) { animation-delay: 1.2s; }

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-green);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

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

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-large);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background: var(--primary-green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    transition: all var(--transition-base);
    transform: scale(0.8);
    animation: scaleIn 0.6s ease forwards;
    animation-delay: inherit;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: var(--shadow-glow);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--dark-navy);
}

.feature-card p {
    color: var(--slate-gray);
    line-height: 1.8;
}

/* =========================================
   TARGET CARDS - Elegant Hover Effects
   ========================================= */
.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

/* Staggered Animation for Target Items */
.target-item {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.7s ease forwards;
}

.target-item:nth-child(1) { animation-delay: 0.1s; }
.target-item:nth-child(2) { animation-delay: 0.2s; }
.target-item:nth-child(3) { animation-delay: 0.3s; }
.target-item:nth-child(4) { animation-delay: 0.4s; }
.target-item:nth-child(5) { animation-delay: 0.5s; }
.target-item:nth-child(6) { animation-delay: 0.6s; }

.target-list {
    max-width: 800px;
    margin: 0 auto;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid rgba(46, 204, 113, 0.1);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.7s ease forwards;
}

.target-item:last-child {
    border-bottom: none;
}

.target-item:hover {
    padding-left: var(--space-md);
    background: var(--very-light-green);
    border-radius: var(--radius-md);
}

.target-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--primary-green);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 4px;
}

.target-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: var(--space-sm);
}

.target-content p {
    color: var(--slate-gray);
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   STEPS - Interactive Flow Design
   ========================================= */
.steps {
    background: var(--ultra-light);
    position: relative;
}

.steps-flow {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

/* Staggered Animation for Step Cards */
.steps-flow .step {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: bounceIn 0.8s ease forwards;
}

.steps-flow .step:nth-child(1) { animation-delay: 0.2s; }
.steps-flow .step:nth-child(2) { animation-delay: 0.4s; }
.steps-flow .step:nth-child(3) { animation-delay: 0.6s; }
.steps-flow .step:nth-child(4) { animation-delay: 0.8s; }

.step {
    background: var(--pure-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-subtle);
    position: relative;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: bounceIn 0.8s ease forwards;
}

.step::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-green);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: all var(--transition-base);
    z-index: -1;
}

.step:hover::before {
    opacity: 1;
}

.step:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-large);
    background: var(--pure-white);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto var(--space-md);
    transition: all var(--transition-base);
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.step h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: var(--space-sm);
}

.step p {
    color: var(--slate-gray);
    line-height: 1.7;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-green);
    margin-top: var(--space-lg);
    animation: pulse 2s ease-in-out infinite;
}

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

/* =========================================
   JOB TYPE CARDS - Modern Card Design
   ========================================= */
.job-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

/* Staggered Animation for Job Type Cards */
.job-types-grid .job-type-card {
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeInLeft 0.7s ease forwards;
}

.job-types-grid .job-type-card:nth-child(1) { animation-delay: 0.1s; }
.job-types-grid .job-type-card:nth-child(2) { animation-delay: 0.3s; }
.job-types-grid .job-type-card:nth-child(3) { animation-delay: 0.5s; }
.job-types-grid .job-type-card:nth-child(4) { animation-delay: 0.7s; }

.job-type-card {
    background: var(--pure-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border-left: 6px solid transparent;
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeInLeft 0.7s ease forwards;
}

.job-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary-green);
    transition: all var(--transition-base);
}

.job-type-card:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: var(--shadow-large);
}

.job-type-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.job-type-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: var(--space-sm);
}

.job-type-card p {
    color: var(--slate-gray);
    line-height: 1.7;
}

/* =========================================
   JOB REQUIREMENTS SECTION
   ========================================= */
.job-requirements {
    padding: var(--space-2xl) 0;
    background: var(--ultra-light);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

/* Staggered Animation for Requirement Cards */
.requirements-grid .requirement-card {
    opacity: 0;
    transform: translateY(30px) rotateX(10deg);
    animation: fadeInUp 0.8s ease forwards;
}

.requirements-grid .requirement-card:nth-child(1) { animation-delay: 0.1s; }
.requirements-grid .requirement-card:nth-child(2) { animation-delay: 0.2s; }
.requirements-grid .requirement-card:nth-child(3) { animation-delay: 0.3s; }
.requirements-grid .requirement-card:nth-child(4) { animation-delay: 0.4s; }
.requirements-grid .requirement-card:nth-child(5) { animation-delay: 0.5s; }
.requirements-grid .requirement-card:nth-child(6) { animation-delay: 0.6s; }

.requirement-card {
    background: var(--pure-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px) rotateX(10deg);
    animation: fadeInUp 0.8s ease forwards;
}

.requirement-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-large);
    border: 2px solid var(--primary-green);
}

.requirement-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: var(--space-sm);
}

.requirement-card p {
    font-size: 1.1rem;
    color: var(--charcoal);
}

.benefits-section {
    background: var(--pure-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.benefits-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: var(--space-md);
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
}

.benefits-list li {
    position: relative;
    padding-left: var(--space-lg);
    font-size: 1.1rem;
    color: var(--charcoal);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* =========================================
   CTA SECTION - Immersive Call-to-Action
   ========================================= */
.cta {
    background: var(--primary-green);
    color: var(--pure-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 15s ease-in-out infinite;
}

.cta > * {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--pure-white);
    color: var(--primary-green);
    box-shadow: var(--shadow-medium);
}

.btn-white:hover {
    background: var(--ultra-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.btn-outline {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--pure-white);
    transform: translateY(-3px);
}

/* =========================================
   FOOTER - Sophisticated Dark Theme
   ========================================= */
.footer {
    background: var(--dark-navy);
    color: var(--pure-white);
    padding: var(--space-2xl) 0 var(--space-lg);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary-green);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: var(--space-md);
    background: var(--primary-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section h3 img {
    filter: brightness(1.2) contrast(1.1);
    transition: all var(--transition-base);
}

.footer-section h3 img:hover {
    filter: brightness(1.4) contrast(1.2);
    transform: scale(1.05);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-sm);
}

.footer-section a {
    color: var(--cool-gray);
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width var(--transition-base);
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-section a:hover {
    color: var(--pure-white);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cool-gray);
}

/* =========================================
   ANIMATIONS & KEYFRAMES
   ========================================= */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

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

/* Enhanced Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeInRight 0.8s ease forwards;
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.6s ease forwards;
}

.bounce-in {
    opacity: 0;
    transform: scale(0.3);
    animation: bounceIn 0.8s ease forwards;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .steps-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: var(--space-md) 0;
    }
}

/* =========================================
   RESPONSIVE BREAKPOINTS - Enhanced Mobile Design
   ========================================= */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        padding: 0 var(--space-xl);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
}

/* Desktop (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding: 0 var(--space-lg);
    }
    
    .hero-content {
        padding: var(--space-xl) var(--space-md);
    }
}

/* Large Tablet (769px - 1023px) */
@media (max-width: 1023px) and (min-width: 769px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .steps-flow {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .step {
        max-width: 400px;
        min-width: 300px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: var(--space-sm) 0;
    }
    
    .features-grid,
    .job-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .requirements-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    /* Show Mobile Navigation */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    /* Header Adjustments */
    .header-inner {
        padding: var(--space-sm) 0;
    }
    
    .logo img {
        height: 36px;
    }
    
    /* Hero Section */
    .hero {
        min-height: 90vh;
        background-image: url('../images/hero_mobile.jpg');
    }
    
    .hero-content {
        padding: var(--space-xl) var(--space-md);
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
        margin-bottom: var(--space-sm);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: var(--space-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    /* Buttons */
    .btn {
        min-width: 200px;
        padding: var(--space-md) var(--space-lg);
        font-size: 1rem;
    }
    
    .btn-large {
        min-width: 240px;
        padding: var(--space-lg) var(--space-xl);
    }
    
    /* Sections */
    section {
        padding: var(--space-xl) 0;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: var(--space-lg);
    }
    
    /* Grid Layouts */
    .features-grid,
    .target-grid,
    .job-types-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    /* Cards */
    .feature-card,
    .job-type-card,
    .requirement-card {
        padding: var(--space-lg);
    }
    
    .feature-card:hover,
    .job-type-card:hover,
    .requirement-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    /* Steps */
    .steps-flow {
        flex-direction: column;
        align-items: center;
        gap: var(--space-lg);
    }
    
    .step {
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: var(--space-md) 0;
        font-size: 1.5rem;
    }
    
    /* CTA Section */
    .cta h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }
    
    /* Mobile-Optimized Animations - Faster, Less Complex */
    .features-grid .feature-card,
    .job-types-grid .job-type-card,
    .requirements-grid .requirement-card,
    .target-item,
    .steps-flow .step {
        animation-duration: 0.5s;
        animation-delay: 0.1s;
    }
    
    .features-grid .feature-card:nth-child(n+2),
    .job-types-grid .job-type-card:nth-child(n+2),
    .requirements-grid .requirement-card:nth-child(n+2) {
        animation-delay: 0.15s;
    }
    
    .features-grid .feature-card:nth-child(n+3),
    .job-types-grid .job-type-card:nth-child(n+3),
    .requirements-grid .requirement-card:nth-child(n+3) {
        animation-delay: 0.2s;
    }
}

/* Large Phone (481px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-content {
        padding: var(--space-lg) var(--space-md);
    }
    
    .btn {
        min-width: 180px;
        font-size: 0.95rem;
    }
    
    .features-grid,
    .job-types-grid {
        gap: var(--space-md);
    }
    
    .feature-card,
    .job-type-card {
        padding: var(--space-md);
    }
    
    /* Touch-friendly spacing */
    .mobile-nav-link {
        padding: var(--space-md) var(--space-lg);
        min-height: 48px;
    }
}

/* Small Phone (320px - 480px) */
@media (max-width: 480px) {
    :root {
        --space-xs: 0.25rem;
        --space-sm: 0.75rem;
        --space-md: 1rem;
        --space-lg: 1.25rem;
        --space-xl: 1.75rem;
        --space-2xl: 2.25rem;
        
        /* Mobile-optimized transitions */
        --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    /* Header */
    .header-inner {
        padding: var(--space-xs) 0;
    }
    
    .logo img {
        height: 32px;
    }
    
    .mobile-menu-btn {
        padding: 8px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .mobile-menu-btn span {
        width: 22px;
        height: 2px;
    }
    
    /* Mobile Navigation */
    .mobile-nav {
        width: min(90vw, 320px);
    }
    
    .mobile-nav-header {
        padding: var(--space-md);
    }
    
    .mobile-nav-logo {
        font-size: 1.3rem;
    }
    
    .mobile-nav-link {
        padding: var(--space-sm) var(--space-md);
        font-size: 1rem;
        min-height: 44px;
    }
    
    .mobile-nav-cta {
        margin: var(--space-md);
    }
    
    /* Hero Section */
    .hero {
        min-height: 85vh;
        background-image: url('../images/hero_mobile.jpg');
    }
    
    .hero-content {
        padding: var(--space-lg) var(--space-sm);
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        line-height: 1.1;
        margin-bottom: var(--space-xs);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        margin-bottom: var(--space-md);
    }
    
    .hero-buttons {
        gap: var(--space-xs);
    }
    
    /* Buttons - Touch-Friendly */
    .btn {
        min-width: 160px;
        min-height: 44px;
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9rem;
    }
    
    .btn-large {
        min-width: 180px;
        min-height: 48px;
        padding: var(--space-md) var(--space-lg);
        font-size: 1rem;
    }
    
    /* Sections */
    section {
        padding: var(--space-lg) 0;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: var(--space-md);
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    /* Cards */
    .feature-card,
    .job-type-card,
    .requirement-card,
    .step {
        padding: var(--space-md);
        border-radius: var(--radius-md);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: var(--space-sm);
    }
    
    .feature-card h3,
    .job-type-card h3,
    .requirement-card h3 {
        font-size: 1.2rem;
        margin-bottom: var(--space-xs);
    }
    
    .feature-card p,
    .job-type-card p,
    .requirement-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Steps */
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .step h3 {
        font-size: 1.1rem;
    }
    
    /* Target Items */
    .target-item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .target-icon {
        margin-top: 0;
    }
    
    /* CTA Section */
    .cta {
        padding: var(--space-xl) 0;
    }
    
    .cta h2 {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: var(--space-sm);
    }
    
    .cta p {
        font-size: 1rem;
        margin-bottom: var(--space-lg);
    }
    
    /* Footer */
    .footer {
        padding: var(--space-xl) 0 var(--space-md);
    }
    
    .footer-content {
        gap: var(--space-md);
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: var(--space-sm);
    }
    
    /* Performance - Reduce animations on small screens */
    .feature-card:hover,
    .job-type-card:hover,
    .requirement-card:hover,
    .step:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    /* Grid spacing */
    .features-grid,
    .job-types-grid,
    .requirements-grid {
        gap: var(--space-md);
    }
    
    .steps-flow {
        gap: var(--space-md);
    }
}

/* Very Small Phone (320px) */
@media (max-width: 320px) {
    :root {
        --space-xs: 0.25rem;
        --space-sm: 0.5rem;
        --space-md: 0.75rem;
        --space-lg: 1rem;
        --space-xl: 1.25rem;
        --space-2xl: 1.75rem;
    }
    
    .container {
        padding: 0 var(--space-xs);
    }
    
    .mobile-nav {
        width: 95vw;
    }
    
    .hero-content {
        padding: var(--space-md) var(--space-xs);
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 10vw, 2.4rem);
    }
    
    .btn {
        min-width: 140px;
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.85rem;
    }
    
    .btn-large {
        min-width: 160px;
        padding: var(--space-sm) var(--space-md);
    }
    
    .feature-card,
    .job-type-card,
    .requirement-card {
        padding: var(--space-sm);
    }
    
    .section-title {
        font-size: clamp(1.4rem, 8vw, 2rem);
    }
    
    /* Minimal animations for very small screens */
    * {
        animation-duration: 0.3s !important;
    }
}

/* =========================================
   PERFORMANCE OPTIMIZATIONS
   ========================================= */
.header,
.hero,
.btn,
.feature-card,
.target-card,
.step,
.job-type-card {
    will-change: transform;
}

/* Intersection Observer Animation Utilities */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.slide-left {
    transform: translateX(-30px);
}

.animate-on-scroll.slide-left.in-view {
    transform: translateX(0);
}

.animate-on-scroll.slide-right {
    transform: translateX(30px);
}

.animate-on-scroll.slide-right.in-view {
    transform: translateX(0);
}

.animate-on-scroll.scale-up {
    transform: scale(0.8);
}

.animate-on-scroll.scale-up.in-view {
    transform: scale(1);
}

/* Card Hover Glow Effects */
.card-glow {
    position: relative;
    overflow: hidden;
}

.card-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card-glow:hover::after {
    opacity: 1;
}

/* Advanced Stagger Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }
.stagger-7 { animation-delay: 0.7s; }
.stagger-8 { animation-delay: 0.8s; }
.stagger-9 { animation-delay: 0.9s; }
.stagger-10 { animation-delay: 1.0s; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-subtle: 0 2px 4px rgba(0, 0, 0, 0.8);
        --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.8);
        --shadow-large: 0 8px 16px rgba(0, 0, 0, 0.8);
    }
}

/* =========================================
   NEW HOMEPAGE IMPROVEMENTS
   ========================================= */

/* Feature Highlight for 非公開求人の多さ */
.feature-highlight {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transform: scale(1.02);
    box-shadow: var(--shadow-large), 0 0 30px rgba(46, 204, 113, 0.4);
    border: 2px solid rgba(46, 204, 113, 0.3);
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(46, 204, 113, 0.1), rgba(26, 188, 156, 0.1));
    z-index: 0;
}

.feature-highlight .feature-icon,
.feature-highlight h3,
.feature-highlight p {
    position: relative;
    z-index: 1;
    color: var(--dark-navy);
}

.feature-highlight .feature-icon {
    color: var(--primary-green);
}

.feature-highlight:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-large), 0 0 40px rgba(46, 204, 113, 0.6);
    border-color: var(--primary-green);
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-2xl) 0;
    background: var(--very-light-green);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232ECC71' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(46, 204, 113, 0.1);
    transition: all var(--transition-base);
    animation: fadeInUp 0.8s ease forwards;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    background: rgba(255, 255, 255, 0.95);
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.3s; }

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--space-md);
    box-shadow: var(--shadow-medium);
}

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

.testimonial-category {
    display: inline-block;
    background: var(--primary-green);
    color: var(--pure-white);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.testimonial-content blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0 0 var(--space-md);
    position: relative;
    padding-left: var(--space-lg);
}

.testimonial-content blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-green);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-content cite {
    font-size: 0.9rem;
    color: var(--slate-gray);
    font-weight: 500;
}

.testimonials-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* Reassurance Section */
.reassurance {
    padding: var(--space-xl) 0;
    background: rgba(46, 204, 113, 0.05);
    border-top: 1px solid rgba(46, 204, 113, 0.1);
    border-bottom: 1px solid rgba(46, 204, 113, 0.1);
}

.reassurance-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.reassurance-content h3 {
    font-size: 1.4rem;
    color: var(--dark-navy);
    margin-bottom: var(--space-md);
}

.reassurance-content p {
    color: var(--slate-gray);
    margin-bottom: var(--space-lg);
}

.reassurance-points {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.reassurance-point {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--charcoal);
}

.point-icon {
    color: var(--primary-green);
    font-weight: 700;
}

/* Requirements Grid Improvements */
.requirements-overview {
    text-align: center;
}

.requirements-intro {
    font-size: 1.1rem;
    color: var(--slate-gray);
    margin-bottom: var(--space-xl);
}

.requirements-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(46, 204, 113, 0.1);
    transition: all var(--transition-base);
    margin: var(--space-xl) 0;
    position: relative;
}

.requirements-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    background: rgba(255, 255, 255, 0.95);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.requirement-info {
    text-align: center;
    padding: var(--space-md);
}

.requirement-info h4 {
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.requirement-info p {
    color: var(--charcoal);
    font-weight: 500;
}

.benefits-section {
    border-top: 2px solid var(--very-light-green);
    padding-top: var(--space-lg);
    text-align: left;
}

.benefits-section h4 {
    color: var(--dark-navy);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-align: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.benefits-list li {
    display: flex;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: var(--very-light-green);
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--charcoal);
    transition: all var(--transition-base);
}

.benefits-list li:before {
    content: '✓';
    color: var(--primary-green);
    font-weight: 700;
    margin-right: var(--space-sm);
    font-size: 1.1rem;
}

.benefits-list li:hover {
    background: rgba(46, 204, 113, 0.1);
    transform: translateY(-2px);
}

.requirements-note {
    font-size: 0.9rem;
    color: var(--slate-gray);
    font-style: italic;
    margin-top: var(--space-lg);
}

/* Sticky Header CTA */
.header-cta {
    display: none;
    margin-left: auto;
    margin-right: var(--space-md);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

.header.scrolled .header-cta {
    display: block;
    animation: fadeInRight 0.3s ease;
}

.header-cta .btn-sticky {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background: var(--primary-green);
    color: var(--pure-white);
    border: none;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.header-cta .btn-sticky:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

/* Footer Accessibility Improvements */
.footer {
    background: #1A532B;
    color: var(--pure-white); /* Improved contrast */
    padding: var(--space-2xl) 0 var(--space-lg);
    position: relative;
}

.footer a {
    color: var(--light-gray); /* Better contrast */
    transition: color var(--transition-base);
}

.footer a:hover {
    color: var(--pure-white);
    text-decoration: none;
}

.footer h4 {
    color: var(--pure-white);
    margin-bottom: var(--space-md);
}

.footer p {
    color: var(--light-gray);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    text-align: center;
}

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

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .testimonial-card {
        padding: var(--space-lg);
    }
    
    .testimonial-content blockquote {
        font-size: 1rem;
        padding-left: var(--space-md);
    }
    
    .reassurance-points {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .requirements-card {
        padding: var(--space-lg);
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .header-cta {
        display: none !important;
    }
    
    .feature-highlight {
        transform: scale(1.01);
        box-shadow: var(--shadow-medium), 0 0 20px rgba(46, 204, 113, 0.3);
    }
}

/* =========================================
   FEATURES SECTION - SAMPLE.PNG STYLE
   ========================================= */

.features {
    padding: 5rem 0;
}

.section-title-with-line {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 5rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title-with-line::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #3B82F6;
    border-radius: 2px;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse > * {
    direction: ltr;
}

.feature-content {
    padding: 2rem;
}

.feature-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.4;
    margin-bottom: 2rem;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate-gray);
    margin-bottom: 1.5rem;
}

.feature-content p:last-child {
    margin-bottom: 0;
}

.feature-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    padding: 1rem;
    background: var(--pure-white);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* =========================================
   TARGET SECTION WITH IMAGE
   ========================================= */

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--slate-gray);
    margin-top: -1rem;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
}

.target-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    margin-top: var(--space-2xl);
}

.target-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-large);
}

.target-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.target-image:hover img {
    transform: scale(1.03);
}

/* オーバーレイを削除 */
/*
.target-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 204, 113, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-base);
}

.target-image:hover .target-image-overlay {
    opacity: 1;
}
*/

.target-image-text {
    text-align: center;
    color: var(--pure-white);
    padding: var(--space-lg);
}

.target-image-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.target-image-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.target-content {
    padding: var(--space-lg);
}

.target-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(46, 204, 113, 0.1);
    transition: all var(--transition-base);
    animation: fadeInLeft 0.8s ease forwards;
}

.target-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.target-item:nth-child(1) { animation-delay: 0.1s; }
.target-item:nth-child(2) { animation-delay: 0.2s; }
.target-item:nth-child(3) { animation-delay: 0.3s; }
.target-item:nth-child(4) { animation-delay: 0.4s; }

.target-icon {
    background: var(--primary-green);
    color: var(--pure-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-medium);
}

.target-content-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: var(--space-xs);
}

.target-content-text p {
    color: var(--slate-gray);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Image Sections */
@media (max-width: 1024px) {
    .feature-block {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .feature-block.reverse {
        direction: ltr;
    }
    
    .feature-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .target-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .target-image {
        height: 350px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 3rem 0;
    }
    
    .section-title-with-line {
        font-size: 1.6rem;
        margin-bottom: 3rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-block {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
        gap: 2rem;
    }
    
    .feature-content {
        padding: 1rem;
    }
    
    .feature-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
    
    .feature-image {
        max-width: 100%;
        padding: 0.5rem;
    }
    
    .target-image {
        height: 300px;
    }
    
    .target-image-text h3 {
        font-size: 1.4rem;
    }
    
    .target-image-text p {
        font-size: 1rem;
    }
    
    .target-item {
        padding: var(--space-md);
    }
    
    .target-item:hover {
        transform: translateY(-5px);
    }
}

/* =========================================
   STEPS SECTION - STEP.PNG STYLE
   ========================================= */

.steps {
    padding: var(--space-2xl) 0;
    background: #f9f9f9;
}

.steps-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.flow-label {
    display: inline-block;
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.steps-header .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin: 0;
}

.highlight-number {
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0.3rem;
}

.steps-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: var(--space-xl) 0;
    flex-wrap: nowrap;
}

.step-card {
    background: var(--pure-white);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 300px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
    animation: fadeInUp 0.8s ease forwards;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(5) { animation-delay: 0.5s; }

.step-label {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: var(--space-md);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--slate-gray);
    line-height: 1.6;
    margin-bottom: auto;
}

.step-icon {
    margin-top: auto;
    color: #666;
    opacity: 0.6;
}

.step-arrow {
    display: flex;
    align-items: center;
    animation: pulse 2s infinite;
    color: #E87A7A;
}

.step-arrow svg {
    fill: currentColor;
}

/* Mobile Responsive for Steps */
@media (max-width: 1024px) {
    .steps-flow {
        flex-direction: column;
        gap: 3rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .step-card {
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .highlight-number {
        font-size: 2rem;
    }
    
    .steps-header .section-title {
        font-size: 1.6rem;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
    }
    
    .step-label {
        font-size: 1.1rem;
    }
    
    .step-card h3 {
        font-size: 1.2rem;
    }
}