/* =========================
   GLOBAL STYLES
========================= */

:root {
    --navy: #07111f;
    --navy-light: #0f1d32;
    --blue: #2563eb;
    --blue-light: #60a5fa;
    --cyan: #22d3ee;
    --white: #ffffff;
    --light: #f8fafc;
    --gray: #94a3b8;
    --border: rgba(255, 255, 255, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 17, 31, 0.78);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

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

.logo-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-size: 0.86rem;
    line-height: 1.05;
    color: #cbd5e1;
}

.logo-text strong {
    font-size: 1.08rem;
    color: var(--white);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    position: relative;
    color: #cbd5e1;
    font-size: 0.94rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--blue-light);
    transition: width 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--white);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-button {
    padding: 12px 20px;
    border-radius: 10px;
    background: var(--blue);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.28);
    transition: 0.3s ease;
}

.header-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.menu-button {
    display: none;
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: 1.45rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
}

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

.hero {
    position: relative;
    min-height: 100vh;
    padding: 165px 0 60px;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 25%, rgba(37, 99, 235, 0.17), transparent 34%),
        radial-gradient(circle at 90% 35%, rgba(34, 211, 238, 0.12), transparent 30%),
        linear-gradient(180deg, #07111f 0%, #0a1628 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    opacity: 0.28;
    pointer-events: none;
}

.hero-glow-one {
    top: 120px;
    left: -120px;
    width: 350px;
    height: 350px;
    background: var(--blue);
}

.hero-glow-two {
    right: -130px;
    bottom: 120px;
    width: 380px;
    height: 380px;
    background: var(--cyan);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 70px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 8px 14px;
    border: 1px solid rgba(96, 165, 250, 0.28);
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: #bfdbfe;
    font-size: 0.82rem;
    font-weight: 500;
}

.hero-label span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 14px var(--cyan);
}

.hero h1 {
    max-width: 700px;
    margin-bottom: 24px;
    font-size: clamp(3.25rem, 6vw, 5.8rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.hero h1 span {
    display: block;
    background: linear-gradient(90deg, var(--blue-light), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    max-width: 650px;
    color: #aebed1;
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 34px 0 42px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s ease;
}

.primary-button {
    background: linear-gradient(135deg, var(--blue), #1d4ed8);
    color: var(--white);
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.34);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.42);
}

.secondary-button {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.22);
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 670px;
}

.hero-trust div {
    padding-left: 16px;
    border-left: 2px solid rgba(96, 165, 250, 0.35);
}

.hero-trust strong,
.hero-trust span {
    display: block;
}

.hero-trust strong {
    margin-bottom: 3px;
    font-size: 0.9rem;
}

.hero-trust span {
    color: var(--gray);
    font-size: 0.75rem;
}

/* =========================
   HERO MOCKUP
========================= */

.hero-visual {
    position: relative;
    min-height: 570px;
    display: grid;
    place-items: center;
}

.browser-card {
    position: relative;
    width: 100%;
    max-width: 580px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: #f8fafc;
    overflow: hidden;
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.42),
        0 0 80px rgba(37, 99, 235, 0.12);
}

.browser-top {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 16px;
    background: #e2e8f0;
    border-bottom: 1px solid #cbd5e1;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #fb7185;
}

.browser-dots span:nth-child(2) {
    background: #facc15;
}

.browser-dots span:nth-child(3) {
    background: #4ade80;
}

.browser-address {
    flex: 1;
    max-width: 250px;
    margin: 0 auto;
    padding: 7px 14px;
    border-radius: 7px;
    background: #ffffff;
    color: #64748b;
    font-size: 0.68rem;
    text-align: center;
}

.browser-content {
    padding: 20px;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 38%),
        #f8fafc;
}

.mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.mock-logo {
    width: 90px;
    height: 14px;
    border-radius: 999px;
    background: #0f172a;
}

.mock-nav {
    display: flex;
    gap: 10px;
}

.mock-nav span {
    width: 34px;
    height: 7px;
    border-radius: 999px;
    background: #cbd5e1;
}

.mock-hero {
    min-height: 290px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 22px;
    padding: 26px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0f172a, #172554);
}

.mock-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-line {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.mock-line.short {
    width: 40%;
    background: var(--blue-light);
}

.mock-line.large {
    width: 95%;
    height: 17px;
    background: var(--white);
}

.mock-line.large.second {
    width: 75%;
}

.mock-line.medium {
    width: 82%;
}

.mock-buttons {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.mock-buttons span {
    width: 78px;
    height: 25px;
    border-radius: 6px;
    background: var(--blue);
}

.mock-buttons span:last-child {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
}

.mock-image {
    position: relative;
    min-height: 190px;
}

.mock-image-card {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.card-one {
    inset: 15px 30px 20px 0;
    background: linear-gradient(135deg, #38bdf8, #2563eb);
}

.card-two {
    width: 65%;
    height: 45%;
    right: 0;
    top: 0;
    background: linear-gradient(135deg, #ffffff, #bfdbfe);
}

.card-three {
    width: 55%;
    height: 38%;
    right: 8px;
    bottom: 0;
    background: linear-gradient(135deg, #22d3ee, #0f766e);
}

.mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.mock-stats div {
    padding: 13px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: white;
}

.mock-stats strong,
.mock-stats span {
    display: block;
}

.mock-stats strong {
    color: #0f172a;
    font-size: 0.77rem;
}

.mock-stats span {
    margin-top: 3px;
    color: #64748b;
    font-size: 0.58rem;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 205px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(15, 29, 50, 0.88);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.floating-card i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.18);
    color: var(--blue-light);
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card strong {
    font-size: 0.76rem;
}

.floating-card span {
    margin-top: 2px;
    color: var(--gray);
    font-size: 0.62rem;
}

.floating-card-one {
    left: -35px;
    bottom: 80px;
}

.floating-card-two {
    top: 85px;
    right: -25px;
}

/* =========================
   TRUSTED STRIP
========================= */

.trusted-strip {
    position: relative;
    z-index: 2;
    margin-top: 90px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.trusted-strip p {
    margin-bottom: 20px;
    color: #64748b;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.trusted-industries {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 34px;
}

.trusted-industries span {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
}

/* =========================
   RESPONSIVE HEADER + HERO
========================= */

@media (max-width: 1050px) {
    .desktop-nav {
        gap: 18px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-content {
        max-width: 800px;
        text-align: center;
        margin: 0 auto;
    }

    .hero-description {
        margin: 0 auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        width: min(720px, 100%);
        margin: 0 auto;
    }
}

@media (max-width: 820px) {
    .desktop-nav,
    .header-button {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .mobile-nav {
        display: none;
        flex-direction: column;
        gap: 4px;
        padding: 0 20px 20px;
        background: rgba(7, 17, 31, 0.98);
    }

    .mobile-nav.open {
        display: flex;
    }

    .mobile-nav a {
        padding: 13px 4px;
        border-bottom: 1px solid var(--border);
        color: #cbd5e1;
    }

    .hero {
        padding-top: 135px;
    }
}

@media (max-width: 650px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 72px;
    }

    .hero {
        padding-bottom: 45px;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 13vw, 4.2rem);
    }

    .hero-description {
        font-size: 0.98rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-trust {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-visual {
        min-height: 440px;
    }

    .browser-card {
        transform: none;
    }

    .floating-card {
        display: none;
    }

    .browser-content {
        padding: 12px;
    }

    .mock-hero {
        grid-template-columns: 1fr;
    }

    .mock-image {
        min-height: 120px;
    }

    .mock-stats {
        gap: 6px;
    }

    .mock-stats div {
        padding: 9px 6px;
    }

    .trusted-strip {
        margin-top: 55px;
    }

    .trusted-industries {
        gap: 18px;
    }
}
/* =========================
   SHARED SECTION STYLES
========================= */

.section {
    padding: 120px 0;
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading.centered {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--blue-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading h2 {
    color: var(--white);
    font-size: clamp(2.35rem, 5vw, 4.3rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.section-heading h2 span {
    color: var(--blue-light);
}

.section-heading > p,
.portfolio-heading > p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.8;
}

.section-heading.centered > p {
    max-width: 720px;
    margin: 22px auto 0;
}

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

.services {
    position: relative;
    background:
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.09), transparent 30%),
        #091524;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    min-height: 410px;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );
    overflow: hidden;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
    filter: blur(10px);
    transition: 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 165, 250, 0.35);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
}

.service-card:hover::before {
    background: rgba(34, 211, 238, 0.15);
}

.featured-service {
    background:
        linear-gradient(
            145deg,
            rgba(37, 99, 235, 0.2),
            rgba(255, 255, 255, 0.025)
        );
}

.service-icon {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 38px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--blue), #1d4ed8);
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.3);
}

.service-number {
    position: absolute;
    top: 32px;
    right: 34px;
    color: rgba(255, 255, 255, 0.17);
    font-size: 2.8rem;
    font-weight: 800;
}

.service-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    font-size: 1.45rem;
}

.service-card > p {
    position: relative;
    z-index: 2;
    min-height: 80px;
    margin-bottom: 25px;
    color: #94a3b8;
    line-height: 1.75;
}

.service-card ul {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 13px;
    list-style: none;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #cbd5e1;
    font-size: 0.88rem;
}

.service-card li i {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.12);
    color: var(--cyan);
    font-size: 0.65rem;
}

/* =========================
   RESULTS STRIP
========================= */

.results-strip {
    padding: 36px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #0c1a2d;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.results-grid div {
    padding: 6px 30px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.results-grid div:last-child {
    border-right: none;
}

.results-grid strong,
.results-grid span {
    display: block;
}

.results-grid strong {
    margin-bottom: 5px;
    color: var(--white);
    font-size: 1.1rem;
}

.results-grid span {
    color: var(--gray);
    font-size: 0.75rem;
}

/* =========================
   PORTFOLIO
========================= */

.portfolio {
    background:
        radial-gradient(circle at 10% 50%, rgba(34, 211, 238, 0.07), transparent 26%),
        var(--navy);
}

.portfolio-heading {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
    gap: 70px;
}

.portfolio-heading > p {
    padding-bottom: 8px;
}

.portfolio-project {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 60px;
    align-items: center;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );
}

.project-browser {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    overflow: hidden;
    background: white;
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.34);
    transition: transform 0.4s ease;
}

.portfolio-project:hover .project-browser {
    transform: translateY(-7px) rotate(-0.5deg);
}

.project-browser-top {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 42px;
    padding: 0 14px;
    background: #e2e8f0;
}

.project-browser-dots {
    display: flex;
    gap: 5px;
}

.project-browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.project-browser-dots span:nth-child(1) {
    background: #fb7185;
}

.project-browser-dots span:nth-child(2) {
    background: #facc15;
}

.project-browser-dots span:nth-child(3) {
    background: #4ade80;
}

.project-browser-address {
    width: 210px;
    margin: 0 auto;
    padding: 5px 12px;
    border-radius: 6px;
    background: white;
    color: #64748b;
    font-size: 0.58rem;
    text-align: center;
}

.project-site {
    background: #f8fafc;
}

.project-site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 20px;
    background: #14532d;
    color: white;
}

.project-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.67rem;
    font-weight: 700;
}

.project-navigation {
    display: flex;
    gap: 8px;
}

.project-navigation span {
    width: 28px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
}

.project-site-hero {
    position: relative;
    min-height: 320px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(160deg, #15803d, #052e16 75%);
}

.project-site-hero::before {
    content: "";
    position: absolute;
    left: -8%;
    bottom: -44%;
    width: 120%;
    height: 72%;
    border-radius: 50% 50% 0 0;
    background: linear-gradient(170deg, #65a30d, #166534);
    transform: rotate(-3deg);
}

.project-site-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    width: 180px;
    height: 100%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4), transparent 6%),
        linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transform: skewX(-12deg);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(250, 204, 21, 0.45), transparent 30%),
        linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.34));
}

.project-site-copy {
    position: relative;
    z-index: 3;
    width: 80%;
    color: white;
    text-align: center;
}

.project-site-copy > span {
    display: inline-block;
    margin-bottom: 10px;
    color: #bef264;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-site-copy h3 {
    max-width: 430px;
    margin: 0 auto 12px;
    font-size: clamp(1.5rem, 3vw, 2.45rem);
    line-height: 1.08;
}

.project-site-copy p {
    max-width: 390px;
    margin: 0 auto 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.63rem;
}

.project-site-copy button {
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    background: #22c55e;
    color: white;
    font-size: 0.62rem;
    font-weight: 700;
}

.project-lawn-lines {
    position: absolute;
    left: -10%;
    bottom: -10%;
    z-index: 2;
    width: 120%;
    height: 45%;
    opacity: 0.18;
    background: repeating-linear-gradient(
        85deg,
        rgba(255, 255, 255, 0.4) 0 18px,
        transparent 18px 38px
    );
    transform: perspective(300px) rotateX(55deg);
}

.project-site-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 18px;
}

.project-site-cards div {
    height: 62px;
    border-radius: 9px;
    background:
        linear-gradient(135deg, rgba(34, 197, 94, 0.16), transparent),
        #e2e8f0;
}

.portfolio-content {
    padding-right: 10px;
}

.project-type {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 11px;
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: #bfdbfe;
    font-size: 0.7rem;
    font-weight: 600;
}

.portfolio-content h3 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
}

.portfolio-content > p {
    color: #94a3b8;
    line-height: 1.75;
}

.project-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    margin: 28px 0;
}

.project-features div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #cbd5e1;
    font-size: 0.78rem;
}

.project-features i {
    color: var(--cyan);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.project-tags span {
    padding: 7px 10px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    font-size: 0.67rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.project-link i {
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(5px);
}

.portfolio-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 42px;
    padding: 34px 38px;
    border: 1px solid rgba(96, 165, 250, 0.17);
    border-radius: 20px;
    background:
        linear-gradient(
            100deg,
            rgba(37, 99, 235, 0.14),
            rgba(34, 211, 238, 0.05)
        );
}

.portfolio-bottom span {
    color: var(--blue-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.portfolio-bottom h3 {
    margin-top: 7px;
    font-size: 1.35rem;
}

/* =========================
   SECTION 2 RESPONSIVE
========================= */

@media (max-width: 980px) {
    .portfolio-project {
        grid-template-columns: 1fr;
    }

    .portfolio-content {
        padding: 0 10px 10px;
    }
}

@media (max-width: 800px) {
    .section {
        padding: 90px 0;
    }

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

    .service-card {
        min-height: auto;
    }

    .service-card > p {
        min-height: auto;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 0;
    }

    .results-grid div:nth-child(2) {
        border-right: none;
    }

    .portfolio-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .portfolio-heading > p {
        max-width: 650px;
    }

    .portfolio-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .service-card {
        padding: 28px 24px;
    }

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

    .results-grid div {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 15px;
    }

    .results-grid div:last-child {
        border-bottom: none;
    }

    .portfolio-project {
        padding: 16px;
        border-radius: 18px;
    }

    .project-browser-address {
        width: 150px;
    }

    .project-site-header {
        padding: 12px;
    }

    .project-navigation {
        display: none;
    }

    .project-site-hero {
        min-height: 270px;
    }

    .project-site-copy {
        width: 92%;
    }

    .project-features {
        grid-template-columns: 1fr;
    }

    .portfolio-bottom {
        padding: 26px 22px;
    }

    .portfolio-bottom .primary-button {
        width: 100%;
    }
}
/* =========================
   PROCESS
========================= */

.process {
    background:
        radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.1), transparent 34%),
        #091524;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.process-card {
    position: relative;
    min-height: 330px;
    padding: 34px 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
    overflow: hidden;
    transition: 0.35s ease;
}

.process-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    transition: width 0.35s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(255, 255, 255, 0.055);
}

.process-card:hover::after {
    width: 100%;
}

.process-number {
    position: absolute;
    top: 25px;
    right: 26px;
    color: rgba(255, 255, 255, 0.13);
    font-size: 2.3rem;
    font-weight: 800;
}

.process-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 35px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.15);
    color: var(--blue-light);
    font-size: 1.25rem;
}

.process-card h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.process-card p {
    color: #94a3b8;
    line-height: 1.75;
    font-size: 0.9rem;
}

/* =========================
   FAQ
========================= */

.web-faq {
    background:
        radial-gradient(circle at 15% 15%, rgba(37, 99, 235, 0.09), transparent 30%),
        #091524;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: rgba(96, 165, 250, 0.35);
}

.faq-question {
    width: 100%;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 20px 24px;
    border: none;
    background: transparent;
    color: white;
    text-align: left;
    cursor: pointer;
}

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
}

.faq-question i {
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(37, 99, 235, 0.12);
    color: var(--blue-light);
    transition: transform 0.3s ease;
}

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

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

.faq-answer p {
    padding: 0 24px 24px;
    color: #94a3b8;
    line-height: 1.8;
    font-size: 0.9rem;
}

/* =========================
   SECTION 3 RESPONSIVE
========================= */

@media (max-width: 980px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: auto;
    }

    .faq-question {
        padding: 18px;
    }

    .faq-answer p {
        padding: 0 18px 20px;
    }
}
/* =========================
   CONTACT
========================= */

.contact {
    background:
        radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.12), transparent 34%),
        linear-gradient(180deg, #07111f, #0a1628);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.contact-content h2 {
    margin-bottom: 22px;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.contact-content h2 span {
    color: var(--blue-light);
}

.contact-content > p {
    max-width: 580px;
    color: #94a3b8;
    line-height: 1.8;
}

.contact-benefits {
    display: grid;
    gap: 18px;
    margin: 34px 0;
}

.contact-benefits > div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-benefits i {
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(34, 211, 238, 0.12);
    color: var(--cyan);
}

.contact-benefits span,
.contact-benefits strong {
    display: block;
}

.contact-benefits span {
    color: #94a3b8;
    font-size: 0.82rem;
}

.contact-benefits strong {
    margin-bottom: 2px;
    color: white;
    font-size: 0.92rem;
}

.contact-direct {
    display: grid;
    gap: 16px;
}

.contact-direct > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-direct i {
    color: var(--blue-light);
}

.contact-direct span,
.contact-direct small {
    display: block;
}

.contact-direct small {
    margin-bottom: 2px;
    color: #64748b;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.contact-direct span,
.contact-direct a {
    color: #cbd5e1;
    font-size: 0.86rem;
}

.contact-form {
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.3);
}

.form-heading {
    margin-bottom: 28px;
}

.form-heading span {
    color: var(--blue-light);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-heading h3 {
    margin: 7px 0 8px;
    font-size: 1.7rem;
}

.form-heading p {
    color: #94a3b8;
    font-size: 0.84rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.form-group label {
    color: #cbd5e1;
    font-size: 0.78rem;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    outline: none;
    background: rgba(255, 255, 255, 0.045);
    color: white;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #64748b;
}

.contact-form select {
    color: #cbd5e1;
}

.contact-form select option {
    background: #0f1d32;
    color: white;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue-light);
    background: rgba(255, 255, 255, 0.065);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.12);
}

.submit-button {
    width: 100%;
    border: none;
    cursor: pointer;
}

.form-note {
    margin-top: 14px;
    color: #64748b;
    font-size: 0.68rem;
    text-align: center;
}

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

.site-footer {
    padding-top: 75px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #050d18;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.8fr 1fr 1fr;
    gap: 55px;
    padding-bottom: 55px;
}

.footer-brand p {
    max-width: 370px;
    margin: 22px 0;
    color: #64748b;
    font-size: 0.84rem;
    line-height: 1.75;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
    color: #94a3b8;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    border-color: rgba(96, 165, 250, 0.4);
    color: var(--blue-light);
    transform: translateY(-3px);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-column h3 {
    margin-bottom: 7px;
    font-size: 0.95rem;
}

.footer-column a,
.footer-column span {
    color: #64748b;
    font-size: 0.78rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--blue-light);
}

.footer-bottom {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p,
.footer-bottom a {
    color: #475569;
    font-size: 0.7rem;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.footer-bottom a:hover {
    color: #94a3b8;
}

/* =========================
   SCROLL REVEAL
========================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   SECTION 4 RESPONSIVE
========================= */

@media (max-width: 950px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

@media (max-width: 600px) {
    .contact-form {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        padding: 22px 0;
        text-align: center;
    }
}

/* =========================
   THANK YOU PAGE
========================= */

.thank-you-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 15% 25%, rgba(37, 99, 235, 0.17), transparent 34%),
        radial-gradient(circle at 90% 35%, rgba(34, 211, 238, 0.12), transparent 30%),
        linear-gradient(180deg, #07111f 0%, #0a1628 100%);
}

.thank-you-main {
    flex: 1;
    display: grid;
    place-items: center;
    padding: 140px 0 80px;
}

.thank-you-card {
    width: min(640px, 100%);
    padding: 56px 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.018)
        );
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
    text-align: center;
}

.thank-you-icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.12);
    color: var(--cyan);
    font-size: 2rem;
}

.thank-you-card h1 {
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    line-height: 1.2;
}

.thank-you-card p {
    margin-bottom: 32px;
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.75;
}

@media (max-width: 600px) {
    .thank-you-card {
        padding: 40px 24px;
    }
}