@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    --home-bg: #050816;
    --home-bg2: #071025;
    --home-card: rgba(255, 255, 255, 0.075);
    --home-border: rgba(255, 255, 255, 0.12);
    --home-border2: rgba(34, 211, 238, 0.25);
    --home-white: #ffffff;
    --home-text: #eef5ff;
    --home-muted: #9aa8c3;
    --home-blue: #3b82f6;
    --home-cyan: #22d3ee;
    --home-purple: #8b5cf6;
    --home-green: #22c55e;
    --home-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
    --home-shadow-soft: 0 16px 45px rgba(0, 0, 0, 0.24);
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    background:
        radial-gradient(circle at 10% 0%, rgba(59, 130, 246, 0.22), transparent 30%),
        radial-gradient(circle at 90% 5%, rgba(34, 211, 238, 0.15), transparent 28%),
        radial-gradient(circle at 50% 90%, rgba(139, 92, 246, 0.16), transparent 38%),
        linear-gradient(180deg, #050816 0%, #071025 52%, #050816 100%) !important;
    color: var(--home-text);
}

#particles-js {
    display: none !important;
}

.home-page {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.home-page::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 60%);
}

.home-page * {
    box-sizing: border-box;
}

.home-container {
    width: min(1220px, calc(100% - 36px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* HERO */

.home-hero {
    padding: 66px 0 52px;
    min-height: auto;
    display: flex;
    align-items: center;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 56px;
    align-items: center;
    width: 100%;
}

.home-hero-content {
    max-width: 700px;
}

.home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 999px;
    color: #dcfbff;
    background: rgba(34, 211, 238, 0.10);
    border: 1px solid rgba(34, 211, 238, 0.24);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 12px 32px rgba(34, 211, 238, 0.08);
    animation: homeFadeUp 0.7s ease both;
}

.home-eyebrow span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--home-green);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.75);
    animation: homePulse 1.7s infinite;
}

.home-title {
    margin: 22px 0 18px;
    color: var(--home-white);
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: clamp(48px, 4.7vw, 74px);
    line-height: 1.04;
    letter-spacing: -2.5px;
    font-weight: 700;
    animation: homeFadeUp 0.85s ease both;
}

.home-title strong {
    display: block;
    margin-top: 6px;
    background: linear-gradient(90deg, var(--home-cyan), var(--home-blue), var(--home-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-text {
    color: var(--home-muted);
    font-size: 17px;
    line-height: 1.85;
    margin: 0 0 28px;
    max-width: 660px;
    font-weight: 500;
    animation: homeFadeUp 1s ease both;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
    animation: homeFadeUp 1.1s ease both;
}

.home-btn {
    min-height: 53px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 23px;
    border-radius: 16px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 900;
    transition: 0.25s ease;
    border: 1px solid transparent;
}

.home-btn:hover {
    transform: translateY(-3px);
    text-decoration: none !important;
}

.home-btn-primary {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--home-blue), var(--home-purple));
    box-shadow: 0 18px 45px rgba(59, 130, 246, 0.30);
}

.home-btn-outline {
    color: var(--home-text) !important;
    background: rgba(255, 255, 255, 0.065);
    border-color: var(--home-border);
    box-shadow: var(--home-shadow-soft);
}

.home-skill-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 700px;
    animation: homeFadeUp 1.2s ease both;
}

.home-skill-pill,
.home-tech {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-skill-pill i,
.home-tech i {
    color: var(--home-cyan);
    font-size: 15px;
}

.home-skill-pill {
    padding: 9px 14px;
    border-radius: 999px;
    color: #dceafe;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

/* PROFILE */

.home-profile-wrap {
    width: 440px;
    min-height: 530px;
    position: relative;
    display: grid;
    place-items: center;
}

.home-profile-wrap::before {
    content: "";
    position: absolute;
    width: 365px;
    height: 440px;
    border-radius: 40px;
    background:
        linear-gradient(145deg, rgba(34, 211, 238, 0.20), rgba(139, 92, 246, 0.18)),
        rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transform: rotate(5deg);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
    animation: homeSoftFloat 5s ease-in-out infinite;
}

.home-profile-wrap::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -16px;
    top: 58px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.18);
    filter: blur(24px);
}

.home-profile-card {
    width: 365px;
    position: relative;
    z-index: 3;
    padding: 12px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--home-shadow);
    backdrop-filter: blur(18px);
    animation: homePhotoFloat 4.8s ease-in-out infinite;
}

.home-photo-frame {
    width: 100%;
    aspect-ratio: 1 / 1.08;
    border-radius: 23px;
    overflow: hidden;
    background: linear-gradient(180deg, #111827, #0f172a);
}

.home-photo-frame.image-missing {
    background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(139, 92, 246, 0.10)),
        #0f172a;
}

.home-photo-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.home-profile-info {
    padding: 16px 10px 8px;
    text-align: center;
}

.home-profile-info h2 {
    margin: 0 0 5px;
    color: #ffffff;
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.home-profile-info p {
    margin: 0;
    color: var(--home-muted);
    font-size: 13px;
    font-weight: 800;
}

.home-mobile-profile-title {
    display: none;
}

.home-floating-card {
    position: absolute;
    z-index: 5;
    width: 210px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border-radius: 18px;
    background: rgba(9, 16, 36, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
}

.home-floating-card i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(34, 211, 238, 0.12);
    color: var(--home-cyan);
    font-size: 20px;
    flex: 0 0 auto;
}

.home-floating-card strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 900;
}

.home-floating-card span {
    display: block;
    margin-top: 5px;
    color: var(--home-muted);
    font-size: 11.5px;
    font-weight: 700;
}

.home-floating-card-one {
    left: -10px;
    top: 104px;
    animation: homeMiniFloat 4.8s ease-in-out infinite;
}

.home-floating-card-two {
    right: -20px;
    bottom: 126px;
    animation: homeMiniFloat 5.3s ease-in-out infinite;
}

.home-experience-card {
    position: absolute;
    z-index: 6;
    left: 18px;
    bottom: 48px;
    width: 112px;
    height: 112px;
    border-radius: 25px;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--home-blue), var(--home-purple));
    color: #ffffff;
    box-shadow: 0 20px 55px rgba(59, 130, 246, 0.32);
    animation: homeMiniFloat 5.6s ease-in-out infinite;
}

.home-experience-card strong {
    display: block;
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
}

.home-experience-card span {
    display: block;
    max-width: 82px;
    margin-top: 6px;
    font-size: 11.5px;
    line-height: 1.25;
    font-weight: 800;
}

/* STATS */

.home-stats {
    padding: 0 0 32px;
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.home-stat {
    padding: 25px 18px;
    border-radius: 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--home-border);
    box-shadow: var(--home-shadow-soft);
    backdrop-filter: blur(16px);
    transition: 0.25s ease;
}

.home-stat:hover {
    transform: translateY(-5px);
    border-color: var(--home-border2);
}

.home-stat strong {
    display: block;
    color: #ffffff;
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.home-stat span {
    color: #c7d2e8;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.3;
}

/* SECTIONS */

.home-section {
    padding: 72px 0;
}

.home-section-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 40px;
}

.home-kicker {
    color: var(--home-cyan);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 900;
    font-size: 12px;
}

.home-section-title {
    color: #ffffff;
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: clamp(32px, 3.7vw, 48px);
    line-height: 1.1;
    margin: 12px 0;
    font-weight: 700;
}

.home-section-desc {
    color: var(--home-muted);
    line-height: 1.82;
    font-size: 15.5px;
    margin: 0;
    font-weight: 500;
}

.home-services-grid,
.home-process-grid,
.home-contact-grid {
    display: grid;
    gap: 20px;
}

.home-services-grid {
    grid-template-columns: repeat(3, 1fr);
}

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

.home-contact-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 22px;
}

.home-service,
.home-skill-card,
.home-process-card,
.home-faq,
.home-contact-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--home-border);
    box-shadow: var(--home-shadow-soft);
    backdrop-filter: blur(16px);
}

.home-service {
    min-height: 230px;
    padding: 28px;
    border-radius: 26px;
    transition: 0.25s ease;
}

.home-service:hover,
.home-contact-card:hover {
    transform: translateY(-7px);
    border-color: var(--home-border2);
}

.home-service-icon,
.home-contact-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(34, 211, 238, 0.10);
    color: var(--home-cyan);
    font-size: 26px;
    margin-bottom: 18px;
}

.home-service h3,
.home-process-card h3,
.home-contact-card h3 {
    color: #ffffff;
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
}

.home-service p,
.home-process-card p,
.home-contact-card p {
    color: var(--home-muted);
    line-height: 1.75;
    margin: 0;
    font-size: 14.5px;
    font-weight: 500;
}

/* SHOWCASE */

.home-showcase {
    border-radius: 32px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--home-border);
    box-shadow: var(--home-shadow);
    backdrop-filter: blur(18px);
}

.home-slider {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #0b1224;
    min-height: 500px;
}

.home-slide {
    display: none;
    min-height: 500px;
    position: relative;
}

.home-slide.active {
    display: block;
    animation: homeSlideFade 0.45s ease both;
}

.home-slide-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.home-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 22%, rgba(5, 8, 22, 0.92) 100%),
        linear-gradient(90deg, rgba(5, 8, 22, 0.76), transparent 68%);
}

.home-slide-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 3;
}

.home-slide-content h3 {
    color: #ffffff;
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 10px;
}

.home-slide-content p {
    color: #dce7f8;
    font-size: 14.5px;
    line-height: 1.68;
    margin: 0 0 16px;
    max-width: 580px;
    font-weight: 500;
}

.home-slide-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 800;
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.home-slider-dots {
    position: absolute;
    z-index: 5;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(5, 8, 22, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
}

.home-dot-btn {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(255, 255, 255, 0.28);
    transition: 0.25s ease;
}

.home-dot-btn.active {
    width: 27px;
    background: var(--home-cyan);
}

/* SKILLS / FAQ / CONTACT */

.home-skill-box {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 28px;
    align-items: center;
}

.home-skill-card,
.home-process-card,
.home-contact-card {
    padding: 27px;
    border-radius: 26px;
}

.home-skill-card {
    padding: 32px;
    border-radius: 28px;
}

.home-skill-card h2 {
    color: #ffffff;
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;
    margin: 8px 0 13px;
}

.home-skill-card p {
    color: var(--home-muted);
    line-height: 1.82;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

.home-skill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-tech {
    padding: 12px 16px;
    border-radius: 999px;
    color: #dceafe;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--home-border);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    transition: 0.25s ease;
}

.home-tech:hover {
    transform: translateY(-3px);
    border-color: var(--home-border2);
}

.home-process-no {
    color: transparent;
    -webkit-text-stroke: 1px rgba(34, 211, 238, 0.78);
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 18px;
}

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

.home-faq {
    border-radius: 22px;
    overflow: hidden;
}

.home-faq summary {
    cursor: pointer;
    padding: 22px 24px;
    color: #ffffff;
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 700;
    list-style: none;
}

.home-faq summary::-webkit-details-marker {
    display: none;
}

.home-faq p {
    color: var(--home-muted);
    line-height: 1.78;
    margin: 0;
    padding: 0 24px 22px;
    font-size: 14.5px;
    font-weight: 500;
}

.home-cta {
    border-radius: 32px;
    padding: 40px;
    background:
        radial-gradient(circle at 15% 20%, rgba(34, 211, 238, 0.13), transparent 35%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
    border: 1px solid var(--home-border);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    box-shadow: var(--home-shadow);
    backdrop-filter: blur(18px);
}

.home-cta h2 {
    color: #ffffff;
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    font-weight: 700;
    margin: 8px 0 12px;
}

.home-cta p {
    color: var(--home-muted);
    margin: 0;
    line-height: 1.78;
    font-size: 15.5px;
}

/* CONTACT UNDERLINE FIX */

.home-contact-card,
.home-contact-card:hover,
.home-contact-card:focus,
.home-contact-card:active,
.home-contact-card *,
.home-contact-card *:hover,
.home-contact-card *:focus,
.home-contact-card *:active {
    text-decoration: none !important;
    border-bottom: 0 !important;
}

.home-contact-card {
    display: block;
    color: inherit !important;
    transition: 0.25s ease;
}

.home-contact-card h3 {
    color: #ffffff !important;
}

.home-contact-card p {
    color: var(--home-muted) !important;
    word-break: break-word;
}

/* ANIMATION */

@keyframes homeFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes homePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.45);
        opacity: 0.65;
    }
}

@keyframes homeSoftFloat {
    0%, 100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(-9px) rotate(3deg);
    }
}

@keyframes homePhotoFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes homeMiniFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes homeSlideFade {
    from {
        opacity: 0;
        transform: scale(1.015);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* TABLET */

@media (max-width: 991px) {
    .home-container {
        width: min(100% - 34px, 1180px) !important;
    }

    .home-hero {
        padding: 58px 0 52px;
        min-height: auto;
    }

    .home-hero-grid,
    .home-skill-box,
    .home-cta {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .home-hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .home-actions,
    .home-skill-line {
        justify-content: center;
    }

    .home-profile-wrap {
        width: 100%;
        min-height: 540px;
    }

    .home-floating-card-one {
        left: calc(50% - 245px);
    }

    .home-floating-card-two {
        right: calc(50% - 250px);
    }

    .home-stats-grid,
    .home-services-grid,
    .home-process-grid,
    .home-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */

@media (max-width: 767px) {
    .home-container {
        width: min(100% - 18px, 1180px) !important;
    }

    .home-hero {
        padding: 40px 0 46px;
    }

    .home-hero-grid {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .home-hero-content {
        width: 100%;
        text-align: center;
    }

    .home-eyebrow {
        padding: 10px 13px;
        font-size: 11px;
        letter-spacing: 0.10em;
    }

    .home-title {
        font-size: clamp(37px, 11vw, 50px);
        line-height: 1.05;
        letter-spacing: -1.45px;
        margin: 20px 0 18px;
    }

    .home-text {
        font-size: 15.5px;
        line-height: 1.78;
        margin-bottom: 24px;
    }

    .home-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 11px;
        margin-bottom: 22px;
    }

    .home-btn {
        width: 100%;
        min-height: 52px;
        padding: 13px 14px;
        border-radius: 16px;
        font-size: 14px;
    }

    .home-skill-line {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 9px;
        padding: 2px 2px 9px;
        scrollbar-width: none;
    }

    .home-skill-line::-webkit-scrollbar {
        display: none;
    }

    .home-skill-pill {
        flex: 0 0 auto;
        padding: 10px 13px;
        font-size: 12.5px;
        white-space: nowrap;
    }

    .home-profile-wrap {
        width: 100%;
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        place-items: center;
        padding: 0;
    }

    .home-profile-wrap::before {
        width: min(320px, 88vw);
        height: 370px;
        border-radius: 34px;
        transform: rotate(3deg);
        top: 18px;
    }

    .home-profile-wrap::after {
        width: 165px;
        height: 165px;
        right: 18px;
        top: 22px;
        filter: blur(24px);
    }

    .home-profile-card {
        width: min(340px, 94vw);
        border-radius: 30px;
        padding: 11px;
        margin: 0 auto;
    }

    .home-photo-frame {
        aspect-ratio: 1 / 1.08;
        border-radius: 22px;
    }

    .home-profile-info {
        display: none;
    }

    .home-mobile-profile-title {
        width: min(340px, 94vw);
        display: block;
        text-align: center;
        padding: 15px 16px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid var(--home-border);
        backdrop-filter: blur(16px);
        box-shadow: var(--home-shadow-soft);
    }

    .home-mobile-profile-title strong {
        display: block;
        color: #ffffff;
        font-family: 'Space Grotesk', 'Manrope', sans-serif;
        font-size: 22px;
        font-weight: 700;
        line-height: 1.2;
    }

    .home-mobile-profile-title span {
        display: block;
        margin-top: 5px;
        color: var(--home-muted);
        font-size: 13px;
        font-weight: 800;
    }

    .home-floating-card,
    .home-experience-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: min(340px, 94vw);
        min-width: 0;
        height: auto;
        margin: 0;
        animation: none;
    }

    .home-floating-card {
        padding: 14px;
        border-radius: 19px;
    }

    .home-floating-card i {
        width: 44px;
        height: 44px;
        border-radius: 15px;
        font-size: 21px;
    }

    .home-experience-card {
        padding: 16px 18px;
        border-radius: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .home-experience-card strong {
        font-size: 31px;
    }

    .home-experience-card span {
        max-width: none;
        margin-top: 0;
        font-size: 13px;
    }

    .home-stats {
        padding: 10px 0 26px;
    }

    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .home-stat {
        padding: 24px 12px;
        border-radius: 22px;
    }

    .home-stat strong {
        font-size: 36px;
    }

    .home-stat span {
        font-size: 15.5px;
        line-height: 1.35;
    }

    .home-section {
        padding: 56px 0;
    }

    .home-section-head {
        margin-bottom: 30px;
    }

    .home-section-title {
        font-size: clamp(31px, 9vw, 39px);
        line-height: 1.12;
    }

    .home-section-desc {
        font-size: 15px;
        line-height: 1.75;
    }

    .home-services-grid,
    .home-process-grid,
    .home-contact-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-service,
    .home-process-card,
    .home-contact-card,
    .home-skill-card,
    .home-faq {
        padding: 24px;
        border-radius: 24px;
    }

    .home-service h3,
    .home-process-card h3,
    .home-contact-card h3 {
        font-size: 20px;
    }

    .home-service p,
    .home-process-card p,
    .home-contact-card p {
        font-size: 15px;
        line-height: 1.72;
    }

    .home-showcase {
        border-radius: 25px;
        padding: 9px;
    }

    .home-slider,
    .home-slide {
        min-height: 400px;
        border-radius: 18px;
    }

    .home-slide-img {
        height: 400px;
    }

    .home-slide-content {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .home-slide-content h3 {
        font-size: 24px;
    }

    .home-slide-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .home-skill-box {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .home-skill-card {
        width: 100%;
    }

    .home-skill-card h2 {
        font-size: 32px;
    }

    .home-skill-grid {
        width: 100%;
        gap: 10px;
    }

    .home-tech {
        padding: 12px 15px;
        font-size: 13.5px;
    }

    .home-faq summary {
        font-size: 16px;
        padding: 20px 21px;
    }

    .home-faq p {
        font-size: 15px;
        padding: 0 21px 20px;
    }

    .home-cta {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px;
        border-radius: 28px;
        text-align: center;
    }

    .home-cta h2 {
        font-size: 32px;
    }
}

@media (max-width: 390px) {
    .home-title {
        font-size: 35px;
    }

    .home-actions {
        grid-template-columns: 1fr;
    }

    .home-profile-card,
    .home-mobile-profile-title,
    .home-floating-card,
    .home-experience-card {
        width: min(325px, 94vw);
    }

    .home-stats-grid {
        grid-template-columns: 1fr;
    }
}

.home-brand-badge {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding: 10px 15px 10px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(34, 211, 238, 0.20);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
    animation: homeFadeUp 0.62s ease both;
}

.home-brand-badge img {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.home-brand-badge span {
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

@media (max-width: 767px) {
    .home-brand-badge {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 16px;
    }

    .home-brand-badge img {
        width: 34px;
        height: 34px;
        border-radius: 12px;
    }

    .home-brand-badge span {
        font-size: 13px;
    }
}