/* ==========================================
   BASIC RESET
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #172033;
    background: #ffffff;
}


a {
    text-decoration: none;
    color: inherit;
}


ul {
    list-style: none;
}


.container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}


/* ==========================================
   HEADER
========================================== */

.header {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}


.nav-wrapper {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
}


.logo span {
    color: #635bff;
}


.navigation {
    display: flex;
    gap: 30px;
}


.navigation a {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
}


.navigation a:hover {
    color: #635bff;
}


/* ==========================================
   HERO
========================================== */

.hero {
    background: #f5f7ff;
    padding: 110px 0;
}


.hero-grid {
    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    gap: 80px;

    align-items: center;
}


.eyebrow {
    color: #635bff;

    font-size: 13px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin-bottom: 15px;
}


.hero h1 {
    font-size: clamp(45px, 6vw, 72px);

    line-height: 1.05;

    color: #111827;

    margin-bottom: 25px;
}


.hero-description {
    max-width: 620px;

    font-size: 18px;

    color: #5f6b7a;

    margin-bottom: 35px;
}


.hero-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}


/* ==========================================
   BUTTONS
========================================== */

.btn {
    display: inline-block;

    padding: 14px 25px;

    background: #635bff;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    border: 2px solid #635bff;

    transition: 0.2s;
}


.btn:hover {
    background: #111827;

    border-color: #111827;
}


.btn-outline {
    background: transparent;

    color: #635bff;
}


.btn-outline:hover {
    color: #ffffff;
}


.btn-white {
    background: #ffffff;

    color: #111827;

    border-color: #ffffff;
}


.btn-white:hover {
    background: #e5e7eb;

    border-color: #e5e7eb;
}


/* ==========================================
   HERO CARD
========================================== */

.hero-card {
    background: #111827;

    min-height: 390px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 40px;
}


.hero-card-inner {
    text-align: center;

    color: #ffffff;
}


.profile-circle {
    width: 120px;

    height: 120px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: #635bff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 55px;

    font-weight: 800;
}


.hero-card h2 {
    font-size: 34px;

    margin-bottom: 5px;
}


.hero-card p {
    color: #cbd5e1;

    margin-bottom: 25px;
}


.skill-list {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 8px;
}


.skill-list span {
    border: 1px solid #4b5563;

    padding: 7px 12px;

    font-size: 12px;

    color: #e5e7eb;
}


/* ==========================================
   SECTIONS
========================================== */

.section {
    padding: 95px 0;
}


.gray-section {
    background: #f8fafc;
}


.section-heading {
    max-width: 700px;

    margin-bottom: 55px;
}


.section-heading h2 {
    font-size: 42px;

    line-height: 1.15;

    color: #111827;

    margin-bottom: 18px;
}


.section-heading > p:last-child {
    color: #6b7280;

    font-size: 17px;
}


/* ==========================================
   SERVICES
========================================== */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.service-card {
    padding: 35px;

    border: 1px solid #e5e7eb;

    background: #ffffff;

    transition: 0.2s;
}


.service-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.07);
}


.service-number {
    color: #635bff;

    font-size: 14px;

    font-weight: 800;

    margin-bottom: 25px;
}


.service-card h3 {
    font-size: 23px;

    color: #111827;

    margin-bottom: 15px;
}


.service-card p {
    color: #6b7280;

    margin-bottom: 25px;
}


.service-card a {
    color: #635bff;

    font-weight: 700;
}


/* ==========================================
   TWO COLUMN
========================================== */

.two-column {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}


.two-column h2 {
    font-size: 42px;

    line-height: 1.15;

    color: #111827;
}


.two-column p {
    color: #64748b;

    margin-bottom: 20px;
}


.text-link {
    color: #635bff;

    font-weight: 700;
}


/* ==========================================
   CTA
========================================== */

.cta {
    background: #635bff;

    color: #ffffff;

    text-align: center;

    padding: 95px 20px;
}


.cta .eyebrow {
    color: #ddd9ff;
}


.cta h2 {
    font-size: 44px;

    line-height: 1.15;

    margin-bottom: 18px;
}


.cta p:not(.eyebrow) {
    margin-bottom: 30px;
}


/* ==========================================
   PAGE HEADER
========================================== */

.page-header {
    background: #f5f7ff;

    padding: 85px 0;
}


.page-header h1 {
    font-size: clamp(42px, 6vw, 62px);

    line-height: 1.1;

    color: #111827;

    margin-bottom: 15px;
}


.page-header p:last-child {
    color: #64748b;

    font-size: 17px;
}


/* ==========================================
   ABOUT
========================================== */

.about-grid {
    display: grid;

    grid-template-columns:
        0.7fr 1.3fr;

    gap: 80px;

    align-items: center;
}


.about-profile {
    background: #111827;

    color: #ffffff;

    padding: 50px;

    text-align: center;
}


.large-profile {
    width: 150px;

    height: 150px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: #635bff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 65px;

    font-weight: 800;
}


.about-profile h2 {
    font-size: 32px;
}


.about-profile p {
    color: #cbd5e1;
}


.about-content h2 {
    font-size: 42px;

    line-height: 1.15;

    margin-bottom: 25px;

    color: #111827;
}


.about-content > p:not(.eyebrow) {
    color: #64748b;

    margin-bottom: 20px;
}


/* ==========================================
   SKILLS
========================================== */

.skills-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.skill-box {
    padding: 30px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
}


.skill-box h3 {
    font-size: 21px;

    margin-bottom: 10px;

    color: #111827;
}


.skill-box p {
    color: #64748b;
}


/* ==========================================
   LARGE SERVICES
========================================== */

.service-list {
    display: flex;

    flex-direction: column;

    gap: 25px;
}


.service-large {
    display: grid;

    grid-template-columns:
        100px 1fr;

    gap: 40px;

    padding: 45px;

    border: 1px solid #e5e7eb;

    background: #ffffff;
}


.service-large-number {
    font-size: 28px;

    font-weight: 800;

    color: #635bff;
}


.service-large h2 {
    font-size: 30px;

    color: #111827;

    margin-bottom: 15px;
}


.service-large p {
    color: #64748b;

    max-width: 750px;

    margin-bottom: 20px;
}


.service-large ul {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;
}


.service-large li {
    color: #374151;

    padding-left: 20px;

    position: relative;
}


.service-large li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: #635bff;

    font-weight: 800;
}


/* ==========================================
   PROCESS
========================================== */

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.process-box {
    background: #ffffff;

    padding: 30px;

    border: 1px solid #e5e7eb;
}


.process-box span {
    color: #635bff;

    font-weight: 800;

    font-size: 14px;
}


.process-box h3 {
    font-size: 21px;

    margin: 15px 0 10px;

    color: #111827;
}


.process-box p {
    color: #64748b;
}


/* ==========================================
   FOOTER
========================================== */

.footer {
    background: #111827;

    color: #ffffff;
}


.footer-grid {
    padding: 55px 0;

    display: flex;

    justify-content: space-between;

    gap: 40px;
}


.footer h3 {
    margin-bottom: 10px;
}


.footer p {
    color: #9ca3af;
}


.footer-links {
    display: flex;

    gap: 25px;

    align-items: center;
}


.footer-links a {
    color: #d1d5db;
}


.footer-links a:hover {
    color: #ffffff;
}


.copyright {
    border-top: 1px solid #374151;

    padding: 20px;

    text-align: center;

    color: #9ca3af;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 850px) {


    .hero-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .services-grid {
        grid-template-columns: 1fr;
    }


    .two-column {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .about-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .skills-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .service-large {
        grid-template-columns: 70px 1fr;

        gap: 25px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {


    .nav-wrapper {
        flex-direction: column;

        padding: 20px 0;

        gap: 15px;
    }


    .navigation {
        gap: 18px;

        flex-wrap: wrap;

        justify-content: center;
    }


    .hero {
        padding: 75px 0;
    }


    .hero h1 {
        font-size: 44px;
    }


    .hero-card {
        min-height: 320px;
    }


    .section {
        padding: 70px 0;
    }


    .section-heading h2,
    .two-column h2,
    .about-content h2 {
        font-size: 33px;
    }


    .cta h2 {
        font-size: 34px;
    }


    .skills-grid {
        grid-template-columns: 1fr;
    }


    .process-grid {
        grid-template-columns: 1fr;
    }


    .service-large {
        grid-template-columns: 1fr;

        padding: 30px;
    }


    .service-large h2 {
        font-size: 26px;
    }


    .service-large ul {
        grid-template-columns: 1fr;
    }


    .footer-grid {
        flex-direction: column;
    }


    .footer-links {
        flex-wrap: wrap;
    }

}