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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Pretendard Variable', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    font-family: 'Wanted Sans Variable', sans-serif;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    font-family: 'Wanted Sans Variable', sans-serif;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    font-family: 'Wanted Sans Variable', sans-serif;
}

.nav a:hover {
    color: #7ED321;
}

.get-in-touch {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Wanted Sans Variable', sans-serif;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 15vw, 200px);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    z-index: 0;
    font-family: 'Wanted Sans Variable', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-left {
    width: 100%;
}

.hero-title h1 {
    font-size: clamp(56px, 8vw, 120px);
    font-weight: 900;
    line-height: 0.9;
    color: #000;
    margin-bottom: clamp(24px, 4.5vw, 48px);
    font-family: 'Wanted Sans Variable', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    width: 100%;
}

.freelance-text {
    display: inline-flex;
    align-items: flex-start;
    margin-bottom: clamp(15px, 3vw, 30px);
    width: auto;
}


.title-group h2 {
    font-size: clamp(28px, 5vw, 72px);
    font-weight: 700;
    line-height: 0.9;
    color: #000;
    font-family: 'Wanted Sans Variable', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    width: 100%;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.green-dot {
    width: 12px;
    height: 12px;
    background: #7ED321;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.status-indicator span {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.hero-right {
    position: relative;
    width: 100%;
}

.hero-image {
    text-align: center;
    margin-bottom: clamp(15px, 3vw, 30px);
    width: 100%;
}

.hero-image img {
    width: 100%;
    max-width: clamp(360px, 40vw, 700px);
    height: auto;
    border-radius: clamp(10px, 2vw, 20px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.social-link {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #7ED321;
    border-color: #7ED321;
    color: #fff;
    transform: scale(1.1);
}

/* Scrolling Banner */
.scrolling-banner {
    background: #7ED321;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.banner-content {
    display: flex;
}

.banner-text {
    display: flex;
    animation: scroll 30s linear infinite;
}

.banner-text span {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    padding-right: 50px;
    font-family: 'Wanted Sans Variable', sans-serif;
    text-transform: uppercase;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Wanted Sans Variable', sans-serif;
    line-height: 1.2;
}

.section-header h4 {
    font-size: 18px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
    gap: 40px;
    margin-bottom: 100px;
    align-items: start;
    justify-items: center;
    justify-content: center;
}

.capability-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    display: flow-root;
}

/* Prevent first child margins from visually cancelling top padding */
.capability-item > *:first-child {
    margin-top: 0;
}

.capability-item:hover {
    transform: translateY(-10px);
}

.capability-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capability-icon img {
    width: 40px;
    height: 40px;
}

.capability-item span {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Wanted Sans Variable', sans-serif;
}

.services-header h3 {
    font-size: 20px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-item {
    padding: 60px 40px;
    background: #f8f9fa;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    background: #7ED321;
    transform: translateY(-10px);
}

.service-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    font-family: 'Wanted Sans Variable', sans-serif;
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    background: #f8f9fa;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.portfolio-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-content {
    padding: 30px;
}

.portfolio-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    font-family: 'Wanted Sans Variable', sans-serif;
}

.portfolio-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.portfolio-tags span {
    padding: 8px 16px;
    background: #7ED321;
    color: #000;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.portfolio-banner {
    background: #000;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.portfolio-banner .banner-text {
    display: flex;
    animation: scroll 25s linear infinite;
}

.portfolio-banner .banner-text span {
    font-size: 24px;
    font-weight: 700;
    color: #7ED321;
    padding-right: 50px;
    font-family: 'Wanted Sans Variable', sans-serif;
    text-transform: uppercase;
}

/* Awards Section */
.awards {
    padding: 120px 0;
    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
}

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

.stat-item h3 {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 72px;
    font-weight: 900;
    color: #000;
    font-family: 'Wanted Sans Variable', sans-serif;
}

.awards-timeline {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.award-item {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.award-year {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    font-family: 'Wanted Sans Variable', sans-serif;
}

.award-image {
    width: 80px;
    height: 80px;
}

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

.award-content ul {
    list-style: none;
}

.award-content li {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.award-content li:before {
    content: "−";
    position: absolute;
    left: 0;
    color: #7ED321;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: #f8f9fa;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonial-item {
    display: none;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item.active {
    display: block;
}

.testimonial-content p {
    font-size: 24px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    font-family: 'Wanted Sans Variable', sans-serif;
}

.testimonial-author span {
    font-size: 14px;
    color: #666;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-dot.active {
    background: #7ED321;
}

/* FAQs Section */
.faqs {
    padding: 120px 0;
    background: #fff;
}

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

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

.faq-question {
    width: 100%;
    padding: 30px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    font-family: 'Wanted Sans Variable', sans-serif;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: #000;
    color: #fff;
}

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

.footer .logo-icon {
    background: #fff;
    color: #000;
}

.footer .logo-text {
    color: #fff;
}

.footer-text p {
    color: #666;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        gap: 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        width: 100%;
    }

    .social-links {
        position: static;
        flex-direction: row;
        justify-content: center;
        transform: none;
    }

    .hero-bg-text {
        display: none;
    }

    .banner-text span {
        font-size: 18px;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

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

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

    .award-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .testimonial-content p {
        font-size: 18px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 120px;
    }

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

    .title-group h2 {
        font-size: 24px;
    }

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

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

    .stat-number {
        font-size: 48px;
    }
}