/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: #172033;
    background: #ffffff;
    line-height: 1.6;
}


.logo {
    display: inline-flex;
    align-items: center;
    /*gap: 10px;*/
    text-decoration: none;
    white-space: nowrap;
    font-size: 24px;
    font-weight: 800;
    color: #172033;
}

.logo-icon {
    width: 150px;
    /*height: 150px;*/
    /*object-fit: contain;*/
    display: block;
}

.logo > span > span {
    color: #2563eb;
}


a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, 92%);
    margin: auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid #e8ebf2;
}

.nav-container {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: #686806;
}



.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-social p {
    margin: 0;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.social-icons li {
    margin: 0;
    padding: 0;
}

.social-icons a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: #1e293b;

    border-radius: 50%;

    text-decoration: none;

    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}


@media (max-width: 600px) {
    .footer-social {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}


.navbar {
    display: flex;
    gap: 30px;
}

.navbar a {
    font-weight: 600;
    color: #4b5563;
    transition: 0.25s;
}

.navbar a:hover {
    color: #2563eb;
}


.thank-you {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background:
        linear-gradient(
            135deg,
            #f8fbff,
            #eef5ff
        );
}

.thank-you-box {
    width: min(600px, 100%);

    padding: 60px 40px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e5eaf1;
    border-radius: 20px;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.10);
}

.success-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;
    background: #16a34a;

    font-size: 36px;
    font-weight: 700;
}

.thank-you-box h1 {
    margin-bottom: 15px;

    font-size: 42px;

    color: #172033;
}

.thank-you-box p {
    max-width: 450px;

    margin: 0 auto 30px;

    color: #687386;

    font-size: 17px;
}


.menu-toggle {
    display: none;

    border: 0;
    background: transparent;

    font-size: 1.7rem;
    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 480px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(37, 99, 235, 0.16),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f8fbff,
            #eef5ff
        );
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 70px;
    align-items: center;
}

.badge,
.section-label {
    display: inline-block;

    color: #2563eb;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;

    font-size: 0.78rem;
}

.hero h1 {
    margin-top: 16px;

    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.05;

    letter-spacing: -3px;
}

.hero h1 span {
    display: block;
    color: #2563eb;
}

.hero-text > p {
    max-width: 650px;

    margin: 24px 0;

    color: #5c6678;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    padding: 13px 24px;

    border-radius: 10px;

    font-weight: 700;

    transition:
        transform 0.2s,
        box-shadow 0.2s,
        background 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: white;
    background: #2563eb;

    box-shadow:
        0 10px 25px rgba(37, 99, 235, 0.22);
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-outline {
    color: #2563eb;
    border: 1px solid #b9cdf7;
    background: white;
}

.btn-light {
    color: #2563eb;
    background: white;
}


/* =========================
   HERO CARD
========================= */

.hero-card {
    padding: 45px;

    border: 1px solid rgba(255,255,255,.8);
    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #2563eb,
            #163ea3
        );

    color: white;

    box-shadow:
        0 30px 70px rgba(37, 99, 235, 0.25);
}

.hero-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-card h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}


/* =========================
   PORTFOLIO
========================= */

.portfolio {
    background: #07111f;
}

.portfolio-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 60px;
}

.portfolio-heading h2 {
    max-width: 650px;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.05;

    letter-spacing: -3px;

    margin-top: 15px;
}

.portfolio-heading h2 span {
    color: #6f8cff;
}

.portfolio-heading > p {
    color: #ffffff;
    font-size: 15px;
    max-width: 430px;
}


/* GRID */

.portfolio-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 60px 25px;
}


/* CARD */

.portfolio-card {
    min-width: 0;
}


/* IMAGE */

.portfolio-image {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    border-radius: 22px;

    background: #101c2e;

    border: 1px solid rgba(255,255,255,.08);
}


/* IMAGE */

.portfolio-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .7s ease;
}


/* HOVER IMAGE */

.portfolio-card:hover
.portfolio-image img {
    transform: scale(1.06);
}


/* DARK OVERLAY */

.portfolio-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.45),
            transparent 50%
        );

    opacity: 0;

    transition: .4s;
}

.portfolio-card:hover
.portfolio-image::after {
    opacity: 1;
}


.hero-visual {
    position: relative;
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Main dashboard */

.hero-dashboard {
    position: relative;
    width: 470px;
    min-height: 350px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.025)
        );

    border: 1px solid rgba(255,255,255,.12);

    box-shadow:
        0 40px 100px rgba(0,0,0,.45);

    backdrop-filter: blur(20px);

    transform: perspective(1000px)
               rotateY(-8deg)
               rotateX(4deg);

    overflow: hidden;

    z-index: 2;
}


/* Top bar */

.dashboard-top {
    height: 55px;

    display: flex;
    align-items: center;

    padding: 0 20px;

    border-bottom:
        1px solid
        rgba(255,255,255,.08);
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #64748b;
}

.dashboard-title {
    margin-left: auto;

    font-size: 10px;

    letter-spacing: 1.5px;

    color: #8c99ad;
}


/* Dashboard content */

.dashboard-content {
    display: grid;

    grid-template-columns: 1.5fr 1fr;

    gap: 20px;

    padding: 30px;
}

.mini-label {
    font-size: 10px;

    letter-spacing: 2px;

    color: #6f8cff;
}

.dashboard-main h3 {
    font-size: 35px;

    line-height: 1.1;

    margin-top: 12px;

    letter-spacing: -1px;
}

.dashboard-main h3 strong {
    color: #6f8cff;
}


/* Chart */

.growth-chart {
    position: relative;

    height: 100px;

    margin-top: 35px;

    border-bottom:
        1px solid
        rgba(255,255,255,.08);
}

.chart-line {
    position: absolute;

    width: 90%;
    height: 65px;

    top: 15px;

    border-top: 3px solid #6f8cff;

    transform:
        skewY(-15deg)
        rotate(-5deg);

    border-radius: 50%;
}

.chart-dot {
    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 15px
        rgba(111,140,255,.8);
}

.dot-1 {
    left: 15%;
    top: 65px;
}

.dot-2 {
    left: 38%;
    top: 50px;
}

.dot-3 {
    left: 62%;
    top: 32px;
}

.dot-4 {
    left: 85%;
    top: 10px;
}


/* Right cards */

.dashboard-side {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.stat-card {
    padding: 18px;

    border-radius: 14px;

    background:
        rgba(255,255,255,.055);

    border:
        1px solid
        rgba(255,255,255,.07);
}

.stat-card span {
    display: block;

    color: #8794a8;

    font-size: 11px;

    margin-bottom: 5px;
}

.stat-card strong {
    font-size: 18px;
}


/* Floating cards */

.floating-card {
    position: absolute;

    z-index: 5;

    padding: 13px 18px;

    border-radius: 14px;

    background:
        rgba(13,25,43,.9);

    border:
        1px solid
        rgba(255,255,255,.12);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.35);

    backdrop-filter: blur(15px);

    font-size: 12px;

    color: #dbe3ef;

    animation: floating 4s ease-in-out infinite;
}

.floating-card span {
    color: #6f8cff;

    margin-right: 8px;

    font-weight: bold;
}

.card-web {
    top: 70px;
    left: 10px;
}

.card-seo {
    right: -10px;
    top: 180px;

    animation-delay: 1s;
}

.card-code {
    bottom: 55px;
    left: 20px;

    animation-delay: 2s;
}


@keyframes floating {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* Glow */

.glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(70px);

    z-index: 0;
}

.glow-one {
    width: 220px;
    height: 220px;

    background: rgba(91,111,255,.20);

    top: 50px;
    right: 40px;
}

.glow-two {
    width: 180px;
    height: 180px;

    background: rgba(145,75,255,.15);

    bottom: 40px;
    left: 50px;
}


/* Mobile */

@media (max-width: 800px) {

    .hero-visual {
        min-height: 420px;
        margin-top: 30px;
    }

    .hero-dashboard {
        width: 95%;

        transform:
            perspective(1000px)
            rotateY(-3deg)
            rotateX(2deg);
    }

    .dashboard-content {
        padding: 20px;
    }

    .dashboard-main h3 {
        font-size: 27px;
    }

    .floating-card {
        font-size: 10px;
        padding: 10px 13px;
    }

    .card-web {
        left: 0;
    }

    .card-seo {
        right: 0;
    }

}

/* PROJECT BUTTON */

.project-link {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

   background: rgb(17 65 171);

    color: #07111f;

    font-size: 22px;

    z-index: 2;

    opacity: 0;

    transform: translateY(10px);

    transition: .4s;
}


.portfolio-card:hover
.project-link {
    opacity: 1;

    transform: translateY(0);
}


/* PROJECT INFO */

.portfolio-info {
    display: flex;

    justify-content: space-between;

    gap: 30px;

    padding: 22px 5px 0;
}


.portfolio-info span {
    display: block;

    color: #6f8cff;

    font-size: 12px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 8px;
}


.portfolio-info h3 {
    font-size: 22px;

color: #ffffff;
    font-weight: 600;
}


.portfolio-info p {
    max-width: 250px;

    color: #ffffff;

    font-size: 13px;

    text-align: right;
}


/* MOBILE */

@media (max-width: 800px) {

    .portfolio-heading {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .portfolio-info {
        display: block;
    }

    .portfolio-info p {
        text-align: left;

        margin-top: 10px;
    }

    .project-link {
        opacity: 1;

        transform: none;
    }

}

/* =========================
   SECTIONS
========================= */

.section {
    padding: 100px 0;
}

.two-column {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;
}

.section h2,
.cta h2 {
    margin-top: 12px;

    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;

    letter-spacing: -1.5px;
}

.two-column p {
    margin-bottom: 18px;
    color: #657084;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 55px;

    text-align: center;
}

.section-heading p {
    margin-top: 15px;
    color: #687386;
}


/* =========================
   SERVICES
========================= */

.services-section {
    background: #f7f9fc;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.service-card {
    padding: 30px;

    background: white;

    border: 1px solid #e7ebf2;
    border-radius: 18px;

    transition:
        transform 0.25s,
        box-shadow 0.25s;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.09);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 18px;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    color: #6b7484;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-card a {
    color: #2563eb;
    font-weight: 700;
}


/* =========================
   FEATURES
========================= */

.features {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    margin-top: 45px;
}

.feature {
    padding: 30px;

    border-top: 3px solid #2563eb;
    background: #f8fafc;

    border-radius: 12px;
}

.feature > span {
    color: #2563eb;
    font-weight: 900;
}

.feature h3 {
    margin: 12px 0 8px;
}

.feature p {
    color: #697487;
}


/* =========================
   CTA
========================= */

.cta {
    padding: 90px 0;

    text-align: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            #1d4ed8,
            #172554
        );
}

.cta p {
    margin: 15px auto 25px;
    color: #dbeafe;
}


/* =========================
   CONTACT
========================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-form {
    padding: 35px;

    background: #f8fafc;

    border: 1px solid #e5eaf1;
    border-radius: 18px;
}

.contact-form label {
    display: block;

    margin-bottom: 6px;

    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    margin-bottom: 18px;
    padding: 13px 15px;

    border: 1px solid #d7dde7;
    border-radius: 9px;

    background: white;

    font: inherit;

    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-message {
    margin-top: 15px;
    font-weight: 600;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 40px 0;

    color: #b8c2d1;

    background: #0b1220;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer h3 {
    color: white;
    margin-bottom: 8px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .hero-content,
    .two-column,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 5px 0;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .features {
        grid-template-columns: 1fr;
    }

    .navbar {
        display: none;

        position: absolute;

        left: 4%;
        right: 4%;
        top: 76px;

        padding: 20px;

        flex-direction: column;
        gap: 15px;

        background: white;

        border: 1px solid #e5e7eb;
        border-radius: 12px;

        box-shadow:
            0 15px 40px rgba(0,0,0,.08);
    }

    .navbar.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}


@media (max-width: 600px) {

    .hero h1 {
        letter-spacing: -2px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 0;
    }

    .hero-card {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
    }
}
