﻿<style>

@font-face {
    font-family: 'GeoGrotesque';
    src: url('/fonts/geogrotesque_rgregular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}


* {
    box-sizing: border-box;
        margin: 0;
       padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'GeoGrotesque', sans-serif;
     background: #f6f7f9;
          color: #1b2430;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, 92%);
    margin: auto;
}

/* =========================
   NAVIGATION
   ========================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    background: rgba(255,255,255,.94);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid #e7e9ed;

    z-index: 1000;
}

nav {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: #1769e0;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: #4b5563;
    font-size: 15px;
    font-weight: 600;
}

.nav-links a:hover {
    color: #1769e0;
}

/* =========================
   HERO
   ========================= */

.hero {
    padding:
        170px 0
        110px;

    background:
        radial-gradient(
            circle at 80% 20%,
            #dceaff 0,
            #f6f7f9 38%
        );
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 70px;
    align-items: center;
}

.eyebrow {
    display: inline-block;

    color: #1769e0;
    background: #e8f1ff;

    padding: 7px 13px;
    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 22px;
}

h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.03;
    letter-spacing: -3px;

    margin-bottom: 25px;
}

h1 span {
    color: #1769e0;
}

.hero-text {
    max-width: 680px;

    color: #5c6675;
    font-size: 20px;

    margin-bottom: 35px;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.button {
    display: inline-block;

    padding: 13px 21px;

    border-radius: 9px;

    font-weight: 700;
    font-size: 15px;

    transition: .2s;
}

.button-primary {
    background: #1769e0;
    color: white;
}

.button-primary:hover {
    background: #0f56bd;
    transform: translateY(-2px);
}

.button-secondary {
    background: white;
    border: 1px solid #d9dee7;
}

.button-secondary:hover {
    border-color: #1769e0;
    color: #1769e0;
}

/* =========================
   HERO CARD
   ========================= */

.experience-card {
    background: white;

    border: 1px solid #e4e7ec;
    border-radius: 20px;

    padding: 35px;

    box-shadow:
        0 20px 50px rgba(20,40,70,.08);
}

.experience-card h3 {
    margin-bottom: 25px;
    font-size: 21px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 17px 0;

    border-bottom: 1px solid #edf0f4;
}

.stat:last-child {
    border-bottom: 0;
}

.stat strong {
    font-size: 30px;
    color: #1769e0;
}

.stat span {
    color: #687384;
    text-align: right;
    max-width: 170px;
    font-size: 14px;
}

/* =========================
   SECTIONS
   ========================= */

section {
    padding: 100px 0;
}

.section-title {
    max-width: 700px;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
}

.section-title p {
    color: #697384;
    font-size: 18px;
}

/* =========================
   SERVICES
   ========================= */

.services {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.service {
    background: white;

    border: 1px solid #e4e7ec;
    border-radius: 15px;

    padding: 30px;

    transition: .2s;
}

.service:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(20,40,70,.08);
}

.service-number {
    color: #1769e0;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 20px;
}

.service h3 {
    font-size: 21px;
    margin-bottom: 12px;
}

.service p {
    color: #697384;
    font-size: 15px;
}

/* =========================
   PROJECTS
   ========================= */

.projects {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.project {
    background: #182230;
    color: white;

    border-radius: 16px;

    padding: 32px;
}

.project-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;

    margin-bottom: 8px;
}

.project-label {
    color: #9eabbc;
    font-size: 14px;

    margin-bottom: 25px;
}

.project h3 {
    margin-bottom: 12px;
    font-size: 21px;
}

.project p {
    color: #bdc7d4;
    font-size: 15px;
}

/* =========================
   ABOUT
   ========================= */

.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.about-text {
    font-size: 18px;
    color: #5e6978;
}

.about-text p {
    margin-bottom: 18px;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill {
    background: #f1f4f8;

    border: 1px solid #e3e7ed;

    padding: 9px 13px;

    border-radius: 7px;

    font-size: 14px;
    font-weight: 600;
}

/* =========================
   CONTACT
   ========================= */

.contact-section {
    background: #f6f7f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact-info p {
    color: #697384;
    margin-bottom: 25px;
}

.contact-detail {
    margin-bottom: 12px;
    font-weight: 600;
}

form {
    background: white;

    padding: 35px;

    border: 1px solid #e2e6eb;
    border-radius: 15px;
}

label {
    display: block;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 7px;
}

input,
textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #d8dde5;
    border-radius: 8px;

    font-family: inherit;
    font-size: 15px;

    margin-bottom: 20px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #1769e0;

    box-shadow:
        0 0 0 3px rgba(23,105,224,.1);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.message {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.success {
    background: #e7f7ed;
    color: #19713a;
}

.error {
    background: #fdeaea;
    color: #a32c2c;
}

/* =========================
   FOOTER
   ========================= */

footer {
    background: #182230;
    color: #9eabbc;

    padding: 30px 0;

    font-size: 14px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 850px) {

    .nav-links {
        display: none;
    }

    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services,
    .projects {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        padding-top: 130px;
    }
}

@media (max-width: 600px) {

    section {
        padding: 70px 0;
    }

    .services,
    .projects {
        grid-template-columns: 1fr;
    }

    h1 {
        letter-spacing: -2px;
    }

    .section-title h2,
    .contact-info h2 {
        font-size: 34px;
    }

    .experience-card {
        padding: 25px;
    }

    .footer-inner {
        flex-direction: column;
    }
}

</style>
