/* ====================================
   RESET & BASE STYLES
   ==================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ====================================
   HEADER & NAVIGATION
   ==================================== */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    color: #ffffff;
    padding: 30px 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 10, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header h2 {
    font-size: 2.4rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

nav li {
    font-size: 1.6rem;
    font-weight: 400;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

nav a:hover {
    color: #9fff6b;
}

#cta-button {
    border: 1px solid #9fff6b;
    padding: 10px 28px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

#cta-button a {
    color: #9fff6b;
}

#cta-button:hover {
    background-color: #9fff6b;
}

#cta-button:hover a {
    color: #000000;
}

/* ====================================
   HERO SECTION
   ==================================== */

.title {
    background-color: #0a0a0a;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5vw;
    text-align: center;
    overflow: hidden;
}

.title > p {
    position: relative;
    top: 18vh;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    text-transform: uppercase;
}

.title > p::before {
    content: '●';
    color: #12e23c;
    font-size: 2rem;
    margin-right: 4px;
}

.title h1 {
    font-size: clamp(8rem, 16vw, 18rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -8px;
    text-transform: uppercase;
    margin: 25px 0 0 0;
    position: relative;
    top: 18vh;
    z-index: 1;
    color: #bef69f;
    text-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}

.title img {
    width: clamp(350px, 50vw, 700px);
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    position: relative;
    top: 17vh;
    left: 35%;
    transform: translateX(-50%);
    z-index: 100;
    mix-blend-mode: lighten;
    filter: contrast(1.15) brightness(1.1) saturate(1.2);
    pointer-events: none;
    margin-top: -60px;
}

.intro {
    position: absolute;
    bottom: 10vh;
    left: 8vw;
    max-width: 520px;
    z-index: 10;
    text-align: left;
}

.intro-text p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 30px 0;
}

.intro-text button {
    background-color: #9fff6b;
    color: #000000;
    border: none;
    padding: 16px 40px;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.intro-text button:hover {
    background-color: #8dee58;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(159, 255, 107, 0.35);
}

/* ====================================
   ABOUT SECTION
   ==================================== */

.about {
    background: #ffffff;
    color: #111111;
    padding: 140px 7vw 160px;
    position: relative;
}

.about .section-header {
    max-width: 860px;
    margin: 0 auto 80px;
    text-align: center;
}

.about .subtitle {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 3px;
    padding: 10px 24px;
    border: 1px solid rgba(17, 17, 17, 0.2);
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.04);
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about .subtitle::before {
    content: '●';
    color: #0c9e2c;
    font-size: 2rem;
    margin-right: 8px;
}

.about .main-title {
    font-size: clamp(3.6rem, 5vw, 6rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin: 20px 0 24px;
    line-height: 1;
}

.about .intro-text {
    font-size: 1.9rem;
    font-weight: 400;
    color: rgba(17, 17, 17, 0.7);
    line-height: 1.6;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-card {
    background: #f8f8f8;
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.12);
    background: #ffffff;
}

.about-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.about-card p {
    font-size: 1.6rem;
    line-height: 1.65;
    color: rgba(17, 17, 17, 0.75);
}

/* ====================================
   WHY WORK WITH ME SECTION
   ==================================== */

.work-with-me {
    position: relative;
    color: #111111;
    font-weight: 600;
    background: #f5f5f5;
    padding: 140px 7vw 160px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    overflow: hidden;
}

.work-with-me .section-header {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.work-with-me .subtitle {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 3px;
    padding: 10px 24px;
    border: 1px solid rgba(17, 17, 17, 0.2);
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.04);
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.work-with-me .subtitle::before {
    content: '●';
    color: #0c9e2c;
    font-size: 2rem;
    margin-right: 8px;
}

.work-with-me .main-title {
    font-size: clamp(3.6rem, 5vw, 6rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin: 20px 0 24px;
    line-height: 1;
}

.work-with-me .intro-text {
    font-size: 1.9rem;
    font-weight: 400;
    color: rgba(17, 17, 17, 0.7);
    margin: 0;
    line-height: 1.6;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.reason-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.08);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(17, 17, 17, 0.06);
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(17, 17, 17, 0.15);
}

.reason-card h3 {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
    margin: 0;
    font-weight: 700;
}

.reason-card p {
    font-size: 1.6rem;
    line-height: 1.65;
    font-weight: 400;
    color: rgba(17, 17, 17, 0.75);
    margin: 0;
}

/* ====================================
   PROJECTS SECTION
   ==================================== */

.projects {
    padding: 140px 7vw 160px;
    background: #0a0a0a;
    color: #ffffff;
    position: relative;
}

.projects .section-header {
    max-width: 860px;
    margin: 0 auto 80px;
    text-align: center;
}

.projects .subtitle {
    display: inline-block;
    padding: 10px 24px;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50px;
    color: #ffffff;
    margin-bottom: 20px;
}

.projects .subtitle::before {
    content: '●';
    margin-right: 8px;
    color: #0c9e2c;
    font-size: 2rem;
}

.projects .main-title {
    font-size: clamp(3.6rem, 5vw, 6rem);
    letter-spacing: -2px;
    margin: 20px 0 24px;
    line-height: 1;
    font-weight: 800;
}

.projects .intro-text {
    font-size: 1.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 255, 157, 0.1);
    border-color: rgba(12, 158, 44, 0.3);
}

.project-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #1a1a1a;
}

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

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-content {
    padding: 32px;
}

.project-card h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.project-card p {
    font-size: 1.6rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.project-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.project-tags span {
    font-size: 1.3rem;
    padding: 6px 16px;
    background: rgba(159, 255, 107, 0.1);
    border: 1px solid rgba(159, 255, 107, 0.3);
    border-radius: 20px;
    color: #9fff6b;
    font-weight: 500;
}

/* ====================================
   SERVICES SECTION
   ==================================== */

.services {
    background: #ffffff;
    color: #111111;
    padding: 140px 7vw 160px;
}

.services .section-header {
    max-width: 860px;
    margin: 0 auto 80px;
    text-align: center;
}

.services .subtitle {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 3px;
    padding: 10px 24px;
    border: 1px solid rgba(17, 17, 17, 0.2);
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.04);
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.services .subtitle::before {
    content: '●';
    color: #0c9e2c;
    font-size: 2rem;
    margin-right: 8px;
}

.services .main-title {
    font-size: clamp(3.6rem, 5vw, 6rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin: 20px 0 24px;
    line-height: 1;
}

.services .intro-text {
    font-size: 1.9rem;
    font-weight: 400;
    color: rgba(17, 17, 17, 0.7);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #f8f8f8;
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    border: 1px solid rgba(17, 17, 17, 0.08);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.12);
    background: #ffffff;
}

.service-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(12, 158, 44, 0.15);
    line-height: 1;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.service-card > p {
    font-size: 1.6rem;
    line-height: 1.65;
    color: rgba(17, 17, 17, 0.75);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    font-size: 1.5rem;
    padding: 10px 0;
    color: rgba(17, 17, 17, 0.7);
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
    position: relative;
    padding-left: 24px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0c9e2c;
    font-weight: 700;
}

.service-features li:last-child {
    border-bottom: none;
}

/* ====================================
   CONTACT SECTION
   ==================================== */

.contact {
    background: #0a0a0a;
    color: #ffffff;
    padding: 140px 7vw 160px;
}

.contact .section-header {
    max-width: 860px;
    margin: 0 auto 80px;
    text-align: center;
}

.contact .subtitle {
    display: inline-block;
    padding: 10px 24px;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50px;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact .subtitle::before {
    content: '●';
    margin-right: 8px;
    color: #0c9e2c;
    font-size: 2rem;
}

.contact .main-title {
    font-size: clamp(3.6rem, 5vw, 6rem);
    letter-spacing: -2px;
    margin: 20px 0 24px;
    line-height: 1;
    font-weight: 800;
}

.contact .intro-text {
    font-size: 1.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group textarea {
    font-size: 1.6rem;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9fff6b;
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background-color: #9fff6b;
    color: #000000;
    border: none;
    padding: 18px 40px;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #8dee58;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(159, 255, 107, 0.35);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(159, 255, 107, 0.3);
}

.info-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.75);
}

.info-card a {
    color: #9fff6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #8dee58;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    font-size: 1.5rem;
    color: #9fff6b;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid rgba(159, 255, 107, 0.3);
    border-radius: 20px;
}

.social-links a:hover {
    background: rgba(159, 255, 107, 0.1);
    transform: translateY(-2px);
}

/* ====================================
   FOOTER
   ==================================== */

footer {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 7vw 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-brand h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-column a {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #9fff6b;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 1024px) {
    header {
        padding: 20px 40px;
    }

    nav ul {
        gap: 2.5rem;
    }

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

@media (max-width: 768px) {
    html {
        font-size: 56%;
    }

    header {
        padding: 20px 30px;
    }

    header h2 {
        font-size: 2rem;
    }

    nav ul {
        gap: 1.5rem;
    }

    .title img {
        left: 50%;
    }

    .intro {
        position: static;
        max-width: 100%;
        margin-top: 60px;
        text-align: center;
    }

    .about,
    .work-with-me,
    .projects,
    .services,
    .contact {
        padding: 100px 5vw 120px;
    }

    .about-content,
    .reasons-grid,
    .projects-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    html {
        font-size: 52%;
    }

    header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .title h1 {
        letter-spacing: -4px;
    }

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

    .submit-btn {
        width: 100%;
    }
}