* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f8f9fa;
}

.hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.hero-content {
    text-align: center;
    margin-bottom: 80px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.screenshot-slider {
    position: relative;
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slide {
    display: none;
    width: 100%;
}

.slide.active {
    display: block;
}

.slide svg {
    width: 100%;
    height: auto;
    display: block;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    border: 2px solid #667eea;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-prev:hover,
.slider-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

.slider-cta {
    text-align: center;
    margin-top: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.benefits-grid.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 12px;
    color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    color: #667eea;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    color: #667eea;
}

.benefit-subtitle {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #764ba2;
}

.benefit-card p {
    color: #555;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    margin: 60px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
}

.review-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.review-text {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.5;
    color: #333;
}

.review-author {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
}

.stars {
    font-size: 2rem;
    color: #ffc107;
}

.process-slider-wrapper {
    position: relative;
    margin: 60px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    transition: transform 0.3s ease;
}

.process-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.process-icon {
    width: 56px;
    height: 56px;
    color: white;
    margin-bottom: 20px;
}

.process-card h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: white;
}

.process-card p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.process-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 1;
}

@media (max-width: 1200px) {
    .process-card:not(:last-child)::after {
        right: -15px;
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 800px) {
    .process-card:not(:last-child)::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: -30px;
        transform: translateX(-50%) rotate(90deg);
    }
}

.final-cta-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 80px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.final-cta-content h3 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 10px;
}

.final-cta-content p {
    font-size: 1.2rem;
    color: #555;
}

.btn {
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.screenshot-slider .btn-primary {
    background: #667eea;
    color: white;
}

.screenshot-slider .btn-primary:hover {
    background: #764ba2;
}

.final-cta-card .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.final-cta-card .btn-primary:hover {
    transform: translateY(-2px);
}


@media (min-width: 800px) and (max-width: 1200px) {
    .process-grid {
        gap: 15px;
    }

    .process-card {
        padding: 25px 20px;
    }

    .process-card h4 {
        font-size: 1.2rem;
    }

    .process-card p {
        font-size: 0.85rem;
    }
}

.site-footer {
    background: #ffffff;
    color: #1a1a1a;
    padding: 60px 20px 30px;
    border-top: 1px solid #e0e0e0;
}

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

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #667eea;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.footer-slogan {
    opacity: 0.8;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #1a1a1a;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #667eea;
    font-size: 0.9rem;
    opacity: 0.7;
    gap: 20px;
}

.footer-bottom a {
    color: #667eea;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.site-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 35px;
    flex: 1;
    justify-content: center;
}

.header-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header-nav a:hover {
    color: #667eea;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-login {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 28px;
    border: 2px solid #667eea;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.25);
}

.header-actions .btn-primary {
    padding: 12px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #667eea;
    cursor: pointer;
}

@media (min-width: 651px) and (max-width: 1100px) {
    .header-nav {
        display: none;
    }

    .header-nav.mobile-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 0;
        align-items: center;
    }

    .header-nav a {
        padding: 15px 0;
        width: 100%;
        text-align: center;
		white-space: nowrap;
    }

    .header-nav a:not(:last-child) {
        border-bottom: 1px solid #e0e0e0;
    }

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

@media (max-width: 651px) {
    .header-nav,
    .header-actions {
        display: none;
    }

    .header-nav.mobile-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 0;
        align-items: center;
    }

    .header-nav a {
        padding: 15px 0;
        width: 100%;
        text-align: center;
		white-space: nowrap;
    }

    .header-nav a:not(:last-child) {
        border-bottom: 1px solid #e0e0e0;
    }

    .header-nav .mobile-action {
        background: none;
        color: #1a1a1a;
        border: none;
        box-shadow: none;
        border-radius: 0;
        font-weight: 500;
    }

    .header-nav .mobile-action:hover {
        transform: none;
        box-shadow: none;
        color: #667eea;
    }

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

.content-page {
    padding: 80px 20px;
    background: #f8f9fa;
    min-height: 60vh;
}

.content-page .container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 40px;
}

.content-body {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.jobs-column h2 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 25px;
}

.jobs-list {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.empty-message {
    color: #999;
    font-style: italic;
}

.application-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

@media (max-width: 800px) {
    .jobs-grid {
        grid-template-columns: 1fr;
    }
}

.help-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.help-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #1a1a1a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.help-icon {
    width: 80px;
    height: 80px;
    color: #667eea;
    margin-bottom: 20px;
}

.help-card h3 {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 10px;
}

.help-card p {
    color: #666;
    font-size: 1rem;
}

@media (max-width: 800px) {
    .help-cards {
        grid-template-columns: 1fr;
    }
}

.content-body li {
    list-style-position: inside; /* bullet inside text block */
}

.process-card {
    position: relative;
    padding-right: 24px; /* space for arrow */
}

.card-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}


@media (max-width: 800px) {
    .hero {
        padding: 50px 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }

    .screenshot-slider {
        padding: 20px;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .benefit-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .review-card {
        padding: 30px 20px;
    }

    .review-text {
        font-size: 1.3rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-card {
        padding-bottom: 50px;
        text-align: center;
    }

    .process-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .final-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .final-cta-content h3 {
        font-size: 1.4rem;
    }

    .final-cta-content p {
        font-size: 1rem;
    }

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

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
        justify-content: center;
    }
}