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

:root {
    --bg: #0a1429;
    --surface: #12284c;
    --surface-soft: #0f1e3a;
    --text: #e8f0ff;
    --muted: #94a3b8;
    --primary: #ff520d;
    --primary-dark: #cc420a;
    --secondary: #ffb347;
    --border: rgba(255, 255, 255, 0.07);
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
    --radius: 18px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a1429 0%, #12284c 100%);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
    isolation: isolate;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

.motion-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

#motionCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.62;
}

.motion-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.7), transparent 75%);
}

.motion-blob {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.34;
}

.motion-blob-one {
    background: radial-gradient(circle, rgba(240, 90, 34, 0.3), transparent 70%);
    top: -110px;
    right: -120px;
    animation: moveBlobOne 22s ease-in-out infinite;
}

.motion-blob-two {
    background: radial-gradient(circle, rgba(29, 78, 216, 0.28), transparent 70%);
    bottom: -140px;
    left: -120px;
    animation: moveBlobTwo 20s ease-in-out infinite;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 8px;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(16px, 4vw, 52px);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all 0.28s ease;
}

nav.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.7px;
}

.logo img {
    height: 42px;
    width: auto;
    max-height: 60px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.logo span {
    color: var(--primary);
}

.logo.logo-mode-text_only {
    gap: 0;
}

.logo.logo-mode-logo_only {
    gap: 0;
}

.fa,
.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands {
    line-height: 1;
    vertical-align: middle;
    text-rendering: geometricPrecision;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-only-icon {
    display: none;
    margin-right: 12px;
}

.sub-menu-icon {
    display: none;
}

/* Desktop: icon-wrap is always visible via .nav-dropdown-menu styles */

@media (max-width: 980px) {
    .mobile-only-icon {
        display: inline-block;
        vertical-align: middle;
        stroke: #ffffff;
        margin-right: 12px;
    }

    .sub-menu-icon {
        display: inline-block;
        vertical-align: middle;
        stroke: rgba(255, 255, 255, 0.6);
        margin-right: 8px;
    }

    .nav-links>a,
    .nav-links>.nav-dropdown-wrap>a {
        justify-content: flex-start !important;
    }

    .dropdown-arrow-icon {
        margin-left: auto !important;
    }
}

.nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    position: relative;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 2px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), #ffb347);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a.active,
.nav-links a:hover {
    color: #0f172a;
    background: rgba(255, 82, 13, 0.06);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    left: 16px;
    right: 16px;
}

/* ==== DESKTOP SERVICES MEGA-DROPDOWN ==== */
.nav-dropdown-wrap {
    position: relative;
    display: inline-block;
}

.nav-dropdown-wrap>a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-wrap>a::after {
    display: none;
    /* No underline for parent */
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.14),
        0 8px 20px rgba(15, 23, 42, 0.06),
        0 0 0 1px rgba(255, 82, 13, 0.06);
    border-radius: 18px;
    padding: 8px;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    pointer-events: none;
    z-index: 100;
}

/* Decorative top arrow */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(255, 82, 13, 0.1);
    border-left: 1px solid rgba(255, 82, 13, 0.1);
    border-radius: 3px 0 0 0;
}

/* Invisible hover bridge between toggle and dropdown */
.nav-dropdown-wrap::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 16px;
}

.nav-dropdown-wrap:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    color: #334155;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.nav-dropdown-menu a::after {
    display: none;
}

/* Icon wrapper styling */
.nav-dropdown-menu .sub-menu-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.nav-dropdown-menu a:nth-child(1) .sub-menu-icon-wrap {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
    color: #3b82f6;
}
.nav-dropdown-menu a:nth-child(2) .sub-menu-icon-wrap {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    color: #10b981;
}
.nav-dropdown-menu a:nth-child(3) .sub-menu-icon-wrap {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    color: #8b5cf6;
}
.nav-dropdown-menu a:nth-child(4) .sub-menu-icon-wrap {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    color: #f59e0b;
}
.nav-dropdown-menu a:nth-child(5) .sub-menu-icon-wrap {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(236, 72, 153, 0.05));
    color: #ec4899;
}

.nav-dropdown-menu .sub-menu-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-dropdown-menu .sub-menu-text .sub-menu-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    transition: color 0.2s ease;
}

.nav-dropdown-menu .sub-menu-text .sub-menu-desc {
    font-size: 11.5px;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.3;
}

.nav-dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(255, 82, 13, 0.06), rgba(255, 179, 71, 0.04));
    transform: translateX(4px);
}

.nav-dropdown-menu a:hover .sub-menu-text .sub-menu-title {
    color: var(--primary);
}

.nav-dropdown-menu a:hover .sub-menu-icon-wrap {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.nav-dropdown-menu a.active {
    background: linear-gradient(135deg, rgba(255, 82, 13, 0.08), rgba(255, 179, 71, 0.04));
}

.nav-dropdown-menu a.active .sub-menu-text .sub-menu-title {
    color: var(--primary);
}

/* Dropdown arrow icon rotation on hover */
.dropdown-arrow-icon {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-dropdown-wrap:hover .dropdown-arrow-icon {
    transform: rotate(180deg);
}

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    border: 2px solid var(--primary);
    border-radius: 999px;
    padding: 10px 20px;
    box-shadow: 0 8px 20px rgba(240, 90, 34, 0.28);
    transition: all 0.25s ease;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: #fff;
    color: var(--primary) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: #0f172a;
    transition: all 0.25s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.page-shell {
    padding-top: 76px;
    min-height: calc(100vh - 360px);
}

.page-hero {
    position: relative;
    padding: 92px clamp(16px, 4vw, 52px) 60px;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
    background:
        radial-gradient(circle at 85% 10%, rgba(240, 90, 34, 0.14), transparent 42%),
        radial-gradient(circle at 15% 100%, rgba(29, 78, 216, 0.13), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.page-hero::before,
.page-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.page-hero::before {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(240, 90, 34, 0.22), rgba(240, 90, 34, 0));
    top: -80px;
    right: -60px;
    animation: floatBlob 9s ease-in-out infinite;
}

.page-hero::after {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.2), rgba(29, 78, 216, 0));
    left: -70px;
    bottom: -90px;
    animation: floatBlob 11s ease-in-out infinite reverse;
}

.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    align-items: center;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(240, 90, 34, 0.24);
    color: var(--primary);
    background: rgba(240, 90, 34, 0.08);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 0 rgba(240, 90, 34, 0.5);
    animation: pulseDot 2s infinite;
}

.page-title {
    font-size: clamp(34px, 5.5vw, 58px);
    line-height: 1.04;
    letter-spacing: -1.6px;
    font-weight: 900;
    margin-bottom: 14px;
    color: #0b1326;
}

.page-title em {
    color: var(--primary);
    font-style: normal;
}

.page-subtitle {
    color: var(--muted);
    font-size: 15px;
    max-width: 620px;
}

.hero-art {
    border-radius: 22px;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow);
    min-height: 290px;
    overflow: hidden;
    position: relative;
}

.hero-art::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 15%, rgba(240, 90, 34, 0.14), transparent 40%);
}

.hero-art-content {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 24px;
    display: grid;
    place-items: center;
    text-align: center;
    color: #0f172a;
}

.hero-art-content h3 {
    font-size: 26px;
    margin-bottom: 8px;
}

.hero-art-content p {
    color: var(--muted);
    font-size: 14px;
}

.hero-art-content img {
    width: min(360px, 100%);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(15, 23, 42, 0.15));
    animation: floatImage 8s ease-in-out infinite;
}

.sec {
    padding: clamp(56px, 9vw, 96px) clamp(16px, 4vw, 52px);
}

.sec-alt {
    background: var(--surface-soft);
}

.con {
    max-width: 1200px;
    margin: 0 auto;
}

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.sec-label::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--primary);
}

.sec-title {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.1;
    letter-spacing: -1.4px;
    margin-bottom: 12px;
    font-weight: 900;
}

.sec-desc {
    max-width: 680px;
    color: var(--muted);
    font-size: 15px;
}

.card-glass {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-glass:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 36px rgba(15, 23, 42, 0.1);
}

.btn-p,
.btn-o {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.25s ease;
    will-change: transform;
}

.btn-p {
    color: #fff;
    background: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 10px 24px rgba(240, 90, 34, 0.28);
}

.btn-p:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-o {
    color: #0f172a;
    border: 2px solid var(--border);
    background: #fff;
}

.btn-o:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: all 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.d1 {
    transition-delay: 0.08s;
}

.d2 {
    transition-delay: 0.16s;
}

.d3 {
    transition-delay: 0.24s;
}

.d4 {
    transition-delay: 0.32s;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #d7e0ec;
    border-radius: 12px;
    padding: 12px 13px;
    font: inherit;
    color: #0f172a;
    background: #fff;
    transition: all 0.2s ease;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(240, 90, 34, 0.7);
    box-shadow: 0 0 0 4px rgba(240, 90, 34, 0.12);
}

footer {
    background: #0a1429;
    border-top: 1px solid var(--border);
    padding: 42px clamp(16px, 4vw, 52px) 20px;
}

.fi-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 26px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.flogo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.flogo-wrap img {
    width: 300px;
    height: 80px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.07);
}

.flogo {
    font-size: 21px;
    font-weight: 900;
    color: var(--text);
}

.flogo span {
    color: var(--primary);
}

.ftag {
    max-width: 330px;
    color: var(--muted);
    font-size: 14px;
}

.fcol-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.1px;
    color: #e8f0ff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.flinks {
    list-style: none;
    display: grid;
    gap: 8px;
}

.flinks a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
}

.flinks a:hover {
    color: var(--primary);
}

.fb {
    max-width: 1200px;
    margin: 14px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.fb-copy {
    font-size: 13px;
    color: var(--muted);
}

.fb-copy span {
    color: var(--text);
    font-weight: 600;
}

.fb-tags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.fbtag {
    font-size: 11px;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
}

.wa {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    background: #25d366;
    color: #fff;
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: transform 0.2s ease;
}

.wa:hover {
    transform: scale(1.08);
}

.wa svg {
    width: 28px;
    height: 28px;
}

.wd-ticker__sep,
.webdevsrts--ticker-sep,
.seo-ticker__sep {
    display: inline-block;
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    font-size: 0;
    line-height: 0;
    color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3 14.6 9.4 21 12l-6.4 2.6L12 21l-2.6-6.4L3 12l6.4-2.6Z' fill='%23ff520d'/%3E%3C/svg%3E");
}

/* Tech Stack Tabs & Animations */
.tech-tabs-wrap {
    margin-top: 40px;
}

.tech-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tech-tab-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.tech-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tech-tab-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(240, 90, 34, 0.25);
}

.tech-tab-pane {
    display: none;
    animation: fadeInTab 0.4s ease forwards;
}

.tech-tab-pane.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.tech-panels-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.tech-canvas-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-height: 480px;
    border-radius: 20px;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.02) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tech-canvas-wrap canvas {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

.tech-grid-custom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 16px;
}

.tech-pill-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 20px 10px;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.tech-pill-custom:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(240, 90, 34, 0.12);
}

.tech-pill-custom img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.08));
}

.tech-pill-custom span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

@media (max-width: 860px) {
    .tech-panels-layout {
        grid-template-columns: 1fr;
    }

    .tech-canvas-wrap {
        aspect-ratio: 16/9;
        max-height: 320px;
    }
}

@keyframes pulseDot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(240, 90, 34, 0.5);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(240, 90, 34, 0);
    }
}

@keyframes floatBlob {

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

    50% {
        transform: translateY(18px);
    }
}

@keyframes moveBlobOne {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(-50px, 45px, 0) scale(1.08);
    }
}

@keyframes moveBlobTwo {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(60px, -35px, 0) scale(1.12);
    }
}

@keyframes floatImage {

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

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

@media (max-width: 980px) {
    nav {
        background: rgba(10, 20, 41, 0.95);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .logo {
        color: #e8f0ff;
    }

    .hamburger {
        display: flex;
    }

    .hamburger span {
        background: #e8f0ff;
    }

    .page-hero-inner,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .motion-blob {
        width: 300px;
        height: 300px;
        opacity: 0.26;
    }

    .fi-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .fi-inner {
        grid-template-columns: 1fr;
    }
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    color: #f8fafc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
    text-decoration: none;
}

.footer-social__link:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(8, 15, 34, 0.32);
}

.footer-social svg {
    width: 19px;
    height: 19px;
}

.footer-social__link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

.footer-social__link--whatsapp:hover {
    background: #25d366;
    border-color: rgba(37, 211, 102, 0.7);
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.32);
}

.footer-social__link--instagram:hover {
    background: linear-gradient(135deg, #f58529 0%, #feda77 18%, #dd2a7b 48%, #8134af 72%, #515bd4 100%);
    border-color: rgba(221, 42, 123, 0.6);
    box-shadow: 0 14px 28px rgba(221, 42, 123, 0.34);
}

.footer-social__link--facebook:hover {
    background: #1877f2;
    border-color: rgba(24, 119, 242, 0.7);
    box-shadow: 0 14px 28px rgba(24, 119, 242, 0.34);
}

.footer-social__link--linkedin:hover {
    background: #0a66c2;
    border-color: rgba(10, 102, 194, 0.7);
    box-shadow: 0 14px 28px rgba(10, 102, 194, 0.34);
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .motion-grid,
    .motion-blob,
    #motionCanvas {
        display: none !important;
    }
}
