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

:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --teal-50: #f0fdfa;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --slate-50: #f8fafc;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: var(--gray-900);
}

/* Utility Classes */
.min-h-screen {
    min-height: 100vh;
}

.bg-gradient-to-b {
    background: linear-gradient(to bottom, var(--slate-50), var(--white));
}

.bg-gradient-to-r {
    background: linear-gradient(to right, var(--emerald-500), var(--teal-600));
}

.from-slate-50 {
    background: linear-gradient(to bottom, var(--slate-50), var(--white));
}

.from-emerald-50 {
    background: linear-gradient(to right, var(--emerald-50), var(--teal-50));
}

.to-teal-50 {
    background: linear-gradient(to right, var(--emerald-50), var(--teal-50));
}

.from-emerald-500 {
    background: linear-gradient(to right, var(--emerald-500), var(--teal-600));
}

.to-teal-600 {
    background: linear-gradient(to right, var(--emerald-500), var(--teal-600));
}

.from-emerald-600 {
    background: linear-gradient(to right, var(--emerald-600), var(--teal-700));
}

.to-teal-700 {
    background: linear-gradient(to right, var(--emerald-600), var(--teal-700));
}

.from-black-20 {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.bg-white {
    background-color: var(--white);
}

.bg-white-95 {
    background-color: rgba(255, 255, 255, 0.95);
}

.bg-gray-200 {
    background-color: var(--gray-200);
}

.bg-gray-900 {
    background-color: var(--gray-900);
}

.bg-emerald-100 {
    background-color: var(--emerald-100);
}

.text-white {
    color: var(--white);
}

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

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

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

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

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

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

.text-emerald-500 {
    color: var(--emerald-500);
}

.text-emerald-600 {
    color: var(--emerald-600);
}

.text-transparent {
    color: transparent;
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.p-6 {
    padding: 1.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-8 {
    padding-top: 2rem;
}

/* Flexbox */
.flex {
    display: flex;
}

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

.items-start {
    align-items: flex-start;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

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

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-1 {
    flex: 1;
}

/* Grid */
.grid {
    display: grid;
}

.lg-grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md-grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md-grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.lg-grid-cols-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md-grid-cols-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .md-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .md-grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lg-grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-16 {
    gap: 4rem;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-x-6 > * + * {
    margin-left: 1.5rem;
}

.space-x-8 > * + * {
    margin-left: 2rem;
}

.space-y-1 > * + * {
    margin-top: 0.25rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

/* Typography */
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

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

.italic {
    font-style: italic;
}

/* Positioning */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.bottom-4 {
    bottom: 1rem;
}

.left-4 {
    left: 1rem;
}

.right-4 {
    right: 1rem;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

/* Sizing */
.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-16 {
    height: 4rem;
}

.h-20 {
    height: 5rem;
}

.h-48 {
    height: 12rem;
}

.h-600px {
    height: 600px;
}

.w-2 {
    width: 0.5rem;
}

.w-4 {
    width: 1rem;
}

.w-5-12 {
    width: 41.666667%;
}

.w-8 {
    width: 2rem;
}

.w-16 {
    width: 4rem;
}

.w-20 {
    width: 5rem;
}

.h-2 {
    height: 0.5rem;
}

.h-4 {
    height: 1rem;
}

.h-8 {
    height: 2rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

/* Borders */
.border-b {
    border-bottom-width: 1px;
    border-bottom-color: rgba(229, 231, 235, 1);
}

.border-2 {
    border-width: 2px;
}

.border-4 {
    border-width: 4px;
}

.border-white {
    border-color: var(--white);
}

.border-emerald-500 {
    border-color: var(--emerald-500);
}

.border-gray-800 {
    border-color: var(--gray-800);
}

.border-t {
    border-top-width: 1px;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

/* Shadows */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover-shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

/* Backdrop */
.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

/* Object Fit */
.object-cover {
    object-fit: cover;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    outline: none;
    white-space: nowrap;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.375rem;
}

.btn-primary {
    background: linear-gradient(to right, var(--emerald-500), var(--teal-600));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--emerald-600), var(--teal-700));
}

.btn-outline {
    background-color: var(--white);
    border: 1px solid var(--emerald-500);
    color: var(--emerald-600);
}

.btn-outline:hover {
    background-color: var(--emerald-50);
    border-color: var(--emerald-600);
}

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

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--emerald-600);
}

.btn-white {
    background-color: var(--white);
    color: var(--emerald-600);
}

.btn-white:hover {
    background-color: var(--gray-100);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-primary {
    background: linear-gradient(to right, var(--emerald-500), var(--teal-600));
    color: var(--white);
}

.badge-success {
    background-color: var(--emerald-500);
    color: var(--white);
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.card-content {
    padding: 1.5rem;
}

.overflow-hidden {
    overflow: hidden;
}

.transition-shadow {
    transition: box-shadow 0.2s;
}

/* Icons */
.icon {
    width: 2rem;
    height: 2rem;
}

.icon-sm {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-xs {
    width: 1rem;
    height: 1rem;
}

/* Logos */
.logo-header {
    height: 3rem;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.logo-footer {
    height: 2.5rem;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

/* Header Mobile Responsive */
.header-container {
    flex-wrap: wrap;
    gap: 1rem;
}

.header-logo {
    flex-shrink: 0;
    min-width: 0;
}

.header-buttons {
    flex-shrink: 1;
    flex-wrap: nowrap;
    gap: 0.75rem;
}

@media (max-width: 640px) {
    .logo-header {
        height: 2rem;
        max-height: 2rem;
    }
    
    .header-container {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    
    .header-logo {
        flex-shrink: 1;
        min-width: 100px;
    }
    
    .header-buttons {
        flex-shrink: 0;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }
    
    .header-buttons .btn {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
        white-space: nowrap;
        flex: 0 0 auto;
    }
    
    .hero-buttons {
        gap: 0.75rem;
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        font-size: 1.125rem;
        padding: 0.875rem 1.25rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-header {
        height: 1.75rem;
        max-height: 1.75rem;
    }
    
    .header-container {
        flex-wrap: nowrap;
        gap: 0.4rem;
    }
    
    .header-logo {
        flex-shrink: 1;
        min-width: 80px;
    }
    
    .header-buttons {
        flex-shrink: 0;
        gap: 0.4rem;
        flex-wrap: nowrap;
    }
    
    .header-buttons .btn {
        font-size: 0.8125rem;
        padding: 0.5rem 0.75rem;
        white-space: nowrap;
        flex: 0 0 auto;
    }
    
    .hero-buttons {
        gap: 0.75rem;
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        width: 100%;
    }
}

/* Carousel */
.carousel-container {
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    padding: 0;
}

.carousel-indicator.active {
    background-color: var(--white);
}

/* Transform Utilities */
.transform {
    transform: translateX(-50%);
}

.translate-x-neg-1-2 {
    transform: translateX(-50%);
}

.left-1-2 {
    left: 50%;
}

/* Custom Grid Classes */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.stories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .stories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .daily-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Career Timeline */
.career-timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--emerald-500), var(--teal-600));
}

.career-timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1rem;
    height: 1rem;
    background: linear-gradient(to right, var(--emerald-500), var(--teal-600));
    border-radius: 9999px;
    border: 4px solid var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Step Badge */
.step-badge {
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--emerald-600);
    border: 2px solid var(--emerald-500);
}

/* CTA Title */
.cta-title {
    font-size: 2.25rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 3rem;
        line-height: 1;
    }
}

/* Hero Buttons */
.hero-buttons {
    flex-direction: column;
}

.hero-buttons .btn {
    white-space: nowrap;
    width: 100%;
}

.cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    white-space: nowrap;
    flex: 0 1 auto;
    min-width: 0;
}

/* Responsive */
@media (min-width: 640px) {
    .sm-flex-row {
        flex-direction: row;
    }
    .hero-buttons {
        flex-direction: row;
    }
    .hero-buttons .btn {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .lg-text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
    .lg-text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
}

/* Opacity */
.opacity-90 {
    opacity: 0.9;
}

/* Justify */
.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

/* Width utilities */
.pr-8 {
    padding-right: 2rem;
}

.pl-8 {
    padding-left: 2rem;
}

