* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        background: #000;
        color: #fff;
        overflow-x: hidden;
    }

    .animate-on-scroll {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .animate-on-scroll.is-visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    
    .w-full {
        width: 100%;
    }
    
    .h-auto {
        height: auto;
    }
    
    .object-cover {
        object-fit: cover;
    }
    
    .relative {
        position: relative;
    }
    
    .z-10 {
        z-index: 10;
    }
    
    .mix-blend-lighten {
        mix-blend-mode: lighten;
    }
    /* Starfield Background */
    
    .starfield {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }
    
    .star {
        position: absolute;
        width: 2px;
        height: 2px;
        background: #fff;
        border-radius: 50%;
        animation: twinkle 3s infinite;
    }
    
    @keyframes twinkle {
        0%,
        100% {
            opacity: 0.3;
        }
        50% {
            opacity: 1;
        }
    }
    /* Navigation */
    
    nav {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 10px 48px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(12px);
        min-height: 64px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
        text-decoration: none;
        color: inherit;
    }

    .logo-icon {
        height: 48px;
        width: auto;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 0;
    }

    .logo-icon img {
        height: 100%;
        width: auto;
        max-width: 88px;
        object-fit: contain;
        display: block;
    }

    .logo-text {
        min-width: 0;
    }

    .logo-text h1 {
        font-size: 20px;
        font-weight: 600;
        letter-spacing: -0.02em;
        white-space: nowrap;
        line-height: 1.2;
    }
    
    .logo-text p {
        font-size: 12px;
        color: #999;
    }
    
    .nav-links {
        display: flex;
        gap: 6px;
        list-style: none;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    .nav-links > li {
        list-style: none;
    }
    
    .nav-links > li > a,
    .nav-parent {
        color: #b0b0b0;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: color 0.25s ease, background 0.25s ease;
        background: transparent;
        border: none;
        cursor: pointer;
        font-family: inherit;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        border-radius: 8px;
        line-height: 1.2;
        white-space: nowrap;
    }
    
    .nav-links > li > a:hover,
    .nav-links > li > a.active,
    .nav-parent:hover,
    .nav-parent.active {
        color: #fff;
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-chevron {
        width: 6px;
        height: 6px;
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        transform: rotate(45deg) translateY(-1px);
        opacity: 0.75;
        transition: transform 0.2s ease;
        flex-shrink: 0;
    }

    .has-dropdown.is-open .nav-chevron,
    .has-dropdown:hover .nav-chevron {
        transform: rotate(225deg) translateY(-1px);
    }

    .has-dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        list-style: none;
        min-width: 220px;
        max-width: 280px;
        padding: 8px;
        margin: 0;
        background: rgba(8, 10, 18, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        display: none;
        z-index: 1100;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
        animation: menuFade 0.18s ease;
    }

    @keyframes menuFade {
        from {
            opacity: 0;
            transform: translateY(6px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown-menu li {
        margin: 0;
    }

    .dropdown-menu a {
        display: block;
        padding: 9px 12px;
        font-size: 13px;
        color: #c8c8c8;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.2s ease, color 0.2s ease;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a.active {
        background: rgba(99, 102, 241, 0.18);
        color: #fff;
    }

    .has-dropdown:hover .dropdown-menu,
    .has-dropdown:focus-within .dropdown-menu,
    .has-dropdown.is-open .dropdown-menu {
        display: block;
    }

    .has-submenu {
        position: relative;
    }

    .submenu-parent {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 9px 12px;
        border: none;
        border-radius: 8px;
        background: transparent;
        color: #c8c8c8;
        font-size: 13px;
        font-family: inherit;
        font-weight: 500;
        cursor: pointer;
        text-align: left;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .submenu-parent:hover,
    .has-submenu.is-open > .submenu-parent {
        background: rgba(99, 102, 241, 0.18);
        color: #fff;
    }

    .submenu-parent .nav-chevron {
        transform: rotate(-45deg);
    }

    .has-submenu.is-open > .submenu-parent .nav-chevron,
    .has-submenu:hover > .submenu-parent .nav-chevron {
        transform: rotate(45deg);
    }

    .submenu {
        list-style: none;
        margin: 0;
        padding: 8px;
        min-width: 190px;
        background: rgba(8, 10, 18, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
        display: none;
    }

    .submenu a {
        display: block;
        padding: 9px 12px;
        font-size: 13px;
        color: #c8c8c8;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .submenu a:hover,
    .submenu a.active {
        background: rgba(99, 102, 241, 0.18);
        color: #fff;
    }

    @media (min-width: 769px) {
        .submenu {
            position: absolute;
            top: 0;
            left: calc(100% + 6px);
        }

        .has-submenu:hover > .submenu,
        .has-submenu:focus-within > .submenu,
        .has-submenu.is-open > .submenu {
            display: block;
        }

        .tech-dropdown {
            min-width: 230px;
        }
    }
    
    .get-in-touch-btn {
        padding: 10px 24px;
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        border: none;
        border-radius: 25px;
        color: #fff;
        cursor: pointer;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        white-space: nowrap;
    }
    /* Hero Section */
    
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 120px 80px;
        position: relative;
    }
    
    .hero-content {
        flex: 1;
        max-width: 600px;
    }
    
    .badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: rgba(99, 102, 241, 0.1);
        border: 1px solid rgba(99, 102, 241, 0.3);
        border-radius: 20px;
        font-size: 14px;
        color: #8b5cf6;
        margin-bottom: 30px;
    }
    
    .hero h1 {
        font-size: 64px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero h1 .gradient-text {
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero p {
        font-size: 18px;
        color: #999;
        line-height: 1.6;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        display: flex;
        gap: 20px;
    }
    
    .btn-primary {
        padding: 14px 32px;
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        border: none;
        border-radius: 25px;
        color: #fff;
        cursor: pointer;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .btn-secondary {
        padding: 14px 32px;
        background: transparent;
        border: 1px solid #333;
        border-radius: 25px;
        color: #fff;
        cursor: pointer;
        font-size: 16px;
    }
    
    .hero-visual {
        flex: 1;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .mockup-card {
        width: 500px;
        height: 280px;
        background: linear-gradient(135deg, #1a1a2e, #16213e);
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    }
    
    .stat-badge {
        position: absolute;
        padding: 12px 20px;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 1px solid rgba(99, 102, 241, 0.3);
        display: flex;
        align-items: center;
        gap: 12px;
    }
    /* Stat Badges */
    
    .stat-badge {
        position: absolute;
        padding: 16px 20px;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 18px;
        border: 1px solid rgba(139, 92, 246, 0.3);
        display: flex;
        align-items: center;
        gap: 14px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        z-index: 20;
    }
    
    .stat-badge.success {
        top: -10px;
        right: -60px;
        background: rgba(16, 185, 129, 0.15);
        border: 1px solid rgba(16, 185, 129, 0.3);
        backdrop-filter: blur(20px);
        animation: floatBadge1 5s ease-in-out infinite, fadeIn 0.8s ease 0.5s backwards;
    }
    
    .stat-badge.users {
        bottom: 30px;
        left: -40px;
        background: rgba(99, 102, 241, 0.15);
        border: 1px solid rgba(99, 102, 241, 0.3);
        backdrop-filter: blur(20px);
        transform: rotate(-6deg);
        animation: floatBadge2 4.5s ease-in-out infinite, fadeIn 0.8s ease 0.7s backwards;
    }
    
    @keyframes floatBadge1 {
        0%,
        100% {
            transform: translateY(0px) translateX(0px);
        }
        50% {
            transform: translateY(-15px) translateX(5px);
        }
    }
    
    @keyframes floatBadge2 {
        0%,
        100% {
            transform: rotate(-6deg) translateY(0px) translateX(0px);
        }
        50% {
            transform: rotate(-6deg) translateY(-18px) translateX(-5px);
        }
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        flex-shrink: 0;
    }

    .stat-icon-svg {
        width: 24px;
        height: 24px;
        color: #fff;
    }
    
    .success-icon {
        background: linear-gradient(135deg, #10b981, #059669);
        box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    }
    
    .users-icon {
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
    }
    
    .stat-badge div:last-child div:first-child {
        font-size: 11px;
        color: #9ca3af;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 2px;
    }
    
    .stat-badge div:last-child div:last-child {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
    }
    
    .stats {
        display: flex;
        gap: 60px;
        margin-top: 60px;
    }
    
    .stat h3 {
        font-size: 42px;
        margin-bottom: 5px;
    }
    
    .stat p {
        color: #666;
        font-size: 14px;
    }
    /* Scroll Down Button */
    
    .scroll-down {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        z-index: 10;
    }
    
    .scroll-down-text {
        font-size: 12px;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .scroll-icon {
        width: 30px;
        height: 50px;
        border: 2px solid rgba(99, 102, 241, 0.5);
        border-radius: 20px;
        position: relative;
        display: flex;
        justify-content: center;
        padding-top: 8px;
    }
    
    .scroll-icon::before {
        content: '';
        width: 4px;
        height: 8px;
        background: #6366f1;
        border-radius: 2px;
        animation: scroll 2s infinite;
    }
    
    @keyframes scroll {
        0% {
            transform: translateY(0);
            opacity: 1;
        }
        50% {
            transform: translateY(12px);
            opacity: 0.5;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .scroll-arrow {
        width: 20px;
        height: 20px;
        border-left: 2px solid #6366f1;
        border-bottom: 2px solid #6366f1;
        transform: rotate(-45deg);
        animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0) rotate(-45deg);
        }
        40% {
            transform: translateY(-10px) rotate(-45deg);
        }
        60% {
            transform: translateY(-5px) rotate(-45deg);
        }
    }
    /* Trusted Companies Section */
    
    .trusted-section {
        padding: 35px 60px 30px;
        text-align: center;
    }

    .trusted-kicker {
        color: #8e96b4;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2.2px;
        margin-bottom: 26px;
        font-weight: 700;
    }

    .trusted-grid {
        max-width: 1180px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }

    .trusted-item {
        min-height: 94px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 18px;
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
        transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    }

    .trusted-item:hover {
        transform: translateY(-6px);
        border-color: rgba(99, 102, 241, 0.34);
        box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
    }

    .trusted-dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: linear-gradient(135deg, #8b5cf6, #4f46e5);
        flex-shrink: 0;
        box-shadow: 0 0 0 5px rgba(99, 102, 241, 0.14);
    }

    .trusted-item h3 {
        margin: 0;
        font-size: 18px;
        color: #eef1ff;
        line-height: 1.35;
        text-align: left;
        font-weight: 600;
    }

    .visual-story-section {
        padding-top: 18px;
    }

    .visual-story-grid {
        max-width: 1180px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.35fr 1fr 1fr;
        gap: 16px;
    }

    .visual-story-main {
        grid-row: span 2;
        min-height: 430px;
    }

    .visual-story-card {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        min-height: 205px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
        animation: visualFloat 7s ease-in-out infinite;
    }

    .visual-story-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.55s ease, filter 0.55s ease;
    }

    .visual-story-card:hover img {
        transform: scale(1.06);
        filter: saturate(1.12) contrast(1.06);
    }

    .visual-story-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), transparent 45%, rgba(15, 23, 42, 0.4));
        opacity: 0.45;
        pointer-events: none;
        z-index: 1;
    }

    .visual-story-overlay {
        position: absolute;
        inset: auto 0 0 0;
        padding: 14px 16px 16px;
        background: linear-gradient(180deg, transparent 0%, rgba(9, 10, 20, 0.92) 78%);
        z-index: 2;
    }

    .visual-story-overlay span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 10px;
        font-size: 12px;
        font-weight: 700;
        color: #d9deff;
        border: 1px solid rgba(99, 102, 241, 0.45);
        background: rgba(99, 102, 241, 0.18);
        margin-bottom: 8px;
    }

    .visual-story-overlay h3 {
        margin: 0;
        color: #f8faff;
        font-size: 19px;
        line-height: 1.35;
    }

    .visual-story-main {
        border-radius: 24px;
    }

    .visual-story-tall {
        grid-row: span 2;
        min-height: 430px;
    }

    .visual-story-wide {
        grid-column: span 2;
    }

    .visual-story-card:nth-child(2n) {
        animation-delay: 0.6s;
    }

    .visual-story-card:nth-child(3n) {
        animation-delay: 1.2s;
    }

    .visual-story-card:nth-child(4n) {
        animation-delay: 1.8s;
    }

    @keyframes visualFloat {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-6px);
        }
    }
    
    .section {
        padding: 50px 60px;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: rgba(99, 102, 241, 0.1);
        border: 1px solid rgba(99, 102, 241, 0.3);
        border-radius: 20px;
        font-size: 14px;
        color: #8b5cf6;
        margin-bottom: 10px;
    }
    
    .section h2 {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        color: #999;
        font-size: 16px;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .card-link {
        display: block;
        text-decoration: none;
        color: inherit;
        position: relative;
        overflow: hidden;
    }

    .card-link::before {
        content: '';
        position: absolute;
        inset: -120% 35% auto -120%;
        height: 280%;
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.12), transparent);
        transform: rotate(12deg);
        transition: transform 0.6s ease;
        pointer-events: none;
    }

    .card-link:hover::before {
        transform: translateX(165%) rotate(12deg);
    }
    
    .service-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 40px;
        transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
        transform-style: preserve-3d;
        will-change: transform;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        border-color: rgba(99, 102, 241, 0.3);
        box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        margin-bottom: 20px;
        position: relative;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    .service-icon::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 15px;
        background: inherit;
        filter: blur(20px);
        opacity: 0.6;
        z-index: -1;
    }
    
    .icon-blue {
        background: linear-gradient(135deg, #3b82f6, #06b6d4);
    }
    
    .icon-pink {
        background: linear-gradient(135deg, #ec4899, #d946ef);
    }
    
    .icon-orange {
        background: linear-gradient(135deg, #f97316, #ea580c);
    }
    
    .icon-green {
        background: linear-gradient(135deg, #10b981, #059669);
    }
    
    .service-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .service-card p {
        color: #999;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .service-features {
        list-style: none;
        margin-bottom: 20px;
    }
    
    .service-features li {
        color: #666;
        font-size: 14px;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .service-features li:before {
        content: "○";
        color: #6366f1;
    }
    
    .learn-more {
        color: #6366f1;
        text-decoration: none;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }
    /* Features Section */
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .feature-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 30px;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .stack-card {
        align-items: flex-start;
    }

    .stack-card .feature-info {
        text-align: left;
    }

    .stack-category {
        color: #8b5cf6;
        font-size: 13px;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .stack-usecase {
        color: #b7b7b7;
        margin-top: 8px;
        font-size: 14px;
    }
    
    .feature-card .service-icon {
        margin-bottom: 0;
    }
    
    .feature-info h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .feature-info p {
        color: #666;
        font-size: 14px;
    }
    /* Technology Section */
    
    .tech-section {
        background: rgba(255, 255, 255, 0.02);
        border-radius: 30px;
        padding: 80px;
        text-align: center;
    }
    
    .tech-tags {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 40px;
        overflow: hidden;
        position: relative;
    }
    
    .tech-marquee {
        display: flex;
        gap: 15px;
        animation: marquee 30s linear infinite;
    }
    
    .tech-marquee:hover {
        animation-play-state: paused;
    }
    
    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    
    .tech-tag {
        padding: 12px 24px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        font-size: 15px;
        transition: all 0.3s;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .tech-tag:hover {
        background: rgba(99, 102, 241, 0.1);
        border-color: rgba(99, 102, 241, 0.3);
    }
    /* Individual tech tag colors */
    
    .tech-tag.react {
        color: #61dafb;
    }
    
    .tech-tag.nodejs {
        color: #68a063;
    }
    
    .tech-tag.python {
        color: #3776ab;
    }
    
    .tech-tag.aws {
        color: #ff9900;
    }
    
    .tech-tag.docker {
        color: #2496ed;
    }
    
    .tech-tag.mongodb {
        color: #47a248;
    }
    
    .tech-tag.postgresql {
        color: #4169e1;
    }
    
    .tech-tag.graphql {
        color: #e10098;
    }
    
    .tech-tag.tailwind {
        color: #06b6d4;
    }
    
    .tech-tag.firebase {
        color: #ffca28;
    }
    /* Process Section */
    
    .process-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    
    .process-step {
        text-align: center;
        position: relative;
        padding: 18px;
        border-radius: 18px;
        transition: transform 0.3s ease, background 0.3s ease;
    }

    .process-step:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.03);
    }
    
    .process-number {
        font-size: 72px;
        color: rgba(255, 255, 255, 0.05);
        font-weight: 700;
        margin-bottom: -20px;
    }
    
    .process-step .service-icon {
        margin: 20px auto;
    }
    
    .process-step h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .process-step p {
        color: #666;
        font-size: 14px;
        line-height: 1.6;
    }
    /* Projects Section */
    
    .projects-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .project-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        overflow: hidden;
        transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
        transform-style: preserve-3d;
        will-change: transform;
    }
    
    .project-card:hover {
        transform: translateY(-10px);
        border-color: rgba(99, 102, 241, 0.3);
        box-shadow: 0 20px 50px rgba(99, 102, 241, 0.14);
    }

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

    .detail-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .detail-header h1 {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .detail-meta {
        margin-top: 20px;
        justify-content: center;
    }

    .detail-hero-image {
        border-radius: 24px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 30px;
    }

    .detail-hero-image img {
        width: 100%;
        max-height: 520px;
        object-fit: cover;
        display: block;
    }

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

    .detail-grid-three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .detail-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 30px;
    }

    .detail-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .detail-card p {
        color: #999;
        line-height: 1.7;
    }

    .detail-card h4 {
        font-size: 17px;
        margin: 18px 0 10px;
    }

    .positioning-section .section-header h2 {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .positioning-grid {
        margin-top: 10px;
    }

    .positioning-card {
        position: relative;
        overflow: hidden;
        background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(255, 255, 255, 0.09);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
        transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    }

    .positioning-card::after {
        content: "";
        position: absolute;
        inset: auto -20% -55% auto;
        width: 170px;
        height: 170px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.25), transparent 65%);
        pointer-events: none;
    }

    .positioning-card:hover {
        transform: translateY(-10px);
        border-color: rgba(99, 102, 241, 0.36);
        box-shadow: 0 28px 55px rgba(79, 70, 229, 0.2);
    }

    .positioning-card-head {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 16px;
    }

    .positioning-card h3 {
        margin: 0;
        font-size: 22px;
        line-height: 1.3;
        color: #f8faff;
    }

    .positioning-chip {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 42px;
        height: 42px;
        padding: 0 10px;
        border-radius: 12px;
        border: 1px solid rgba(99, 102, 241, 0.45);
        background: rgba(99, 102, 241, 0.16);
        color: #dbe4ff;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.08em;
    }

    .positioning-card p {
        margin: 0;
        color: #b9bfd6;
        font-size: 15px;
        line-height: 1.8;
        max-width: 40ch;
    }

    .detail-actions {
        margin-top: 35px;
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .project-image {
        width: 100%;
        height: 280px;
        background: linear-gradient(135deg, #1a1a2e, #16213e);
        position: relative;
        overflow: hidden;
    }

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;      /* 👈 KEY */
        object-position: center;
        display: block;
        transition: transform 0.45s ease;
    }

    .project-card:hover .project-image img {
        transform: scale(1.06);
    }
    
    .project-stats {
        position: absolute;
        bottom: 15px;
        left: 15px;
        display: flex;
        gap: 15px;
    }
    
    .project-stat {
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        padding: 8px 15px;
        border-radius: 10px;
        font-size: 12px;
    }
    
    .project-stat span {
        display: block;
        color: #666;
        font-size: 10px;
    }
    
    .project-info {
        padding: 30px;
    }
    
    .project-info h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .project-info p {
        color: #999;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
        .project-tags {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

    @media (max-width: 768px) {
        .ai-generator-layout {
            grid-template-columns: 1fr;
        }

        .ai-generator-page {
            padding-left: 18px;
            padding-right: 18px;
        }

        .project-tags {
            flex-wrap: nowrap;
            overflow-x: auto;
        }

        .trusted-section {
            padding: 28px 18px 14px;
        }

        .trusted-grid {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .visual-story-grid {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .visual-story-main {
            grid-row: auto;
            min-height: 260px;
        }

        .visual-story-tall {
            grid-row: auto;
            min-height: 220px;
        }

        .visual-story-wide {
            grid-column: auto;
        }

        .visual-story-card {
            min-height: 220px;
            animation: none;
        }

        .trusted-item {
            min-height: 70px;
            justify-content: flex-start;
        }
    }
    
        .project-tag {
            display: inline-flex;          
            padding: 7px 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            font-size: 12px;
            white-space: nowrap;           /* prevents line break */
            width: fit-content;            /* ensures auto width */
        }

    .industry-tags {
        justify-content: center;
    }

    .center-link-row {
        text-align: center;
        margin-top: 25px;
    }

    /* Testimonials Section */

    .review-section {
        position: relative;
    }

    .review-proof-row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin: -24px 0 28px;
    }

    .review-proof-chip {
        display: inline-flex;
        align-items: center;
        padding: 8px 14px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.04);
        color: #cfd6ee;
        font-size: 12px;
        letter-spacing: 0.02em;
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .testimonial-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        padding: 30px;
        transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
        transform-style: preserve-3d;
        will-change: transform;
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
    }
    
    .testimonial-card:hover {
        transform: translateY(-10px);
        border-color: rgba(99, 102, 241, 0.3);
        box-shadow: 0 20px 50px rgba(99, 102, 241, 0.14);
    }

    .testimonial-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
    }
    
    .stars {
        color: #fbbf24;
        font-size: 17px;
        margin-bottom: 0;
        letter-spacing: 1px;
    }

    .review-verified {
        display: inline-flex;
        align-items: center;
        padding: 5px 10px;
        border-radius: 999px;
        font-size: 11px;
        font-weight: 600;
        color: #d6dbf8;
        background: rgba(16, 185, 129, 0.18);
        border: 1px solid rgba(16, 185, 129, 0.38);
    }
    
    .testimonial-text {
        color: #d7dcef;
        line-height: 1.72;
        margin-bottom: 24px;
        font-size: 14px;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
    }
    
    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
        /* Move face slightly upward */
        display: block;
    }
    
    .author-info h4 {
        font-size: 16px;
        margin-bottom: 3px;
        color: #f8faff;
    }
    
    .author-info p {
        color: #a2adcb;
        font-size: 13px;
    }

    .review-meta {
        color: #c2cbe2;
        font-size: 12px;
        margin-top: 4px;
    }

    .package-price {
        font-size: 34px;
        font-weight: 700;
        color: #fff;
        margin: 8px 0 2px;
    }

    .mini-heading {
        margin: 14px 0 8px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        color: #d1d5db;
    }

    .form-label {
        display: block;
        margin-bottom: 8px;
        font-size: 13px;
        color: #cbd5e1;
    }

    .filter-ui-card {
        position: relative;
        overflow: hidden;
    }

    .filter-ui-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.14), transparent 58%);
        pointer-events: none;
    }

    .filter-ui-head,
    .filter-step-row,
    .package-filter-grid,
    .filter-ui-hint {
        position: relative;
        z-index: 1;
    }

    .filter-ui-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 16px;
    }

    .filter-ui-kicker {
        font-size: 12px;
        letter-spacing: 0.7px;
        text-transform: uppercase;
        color: #a5b4fc;
        margin-bottom: 6px;
        font-weight: 700;
    }

    .filter-ui-head h3 {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .filter-ui-text {
        color: #b6becf;
        line-height: 1.7;
        margin: 0;
    }

    .filter-ui-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(8, 11, 28, 0.8);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
        flex-shrink: 0;
    }

    .filter-step-row {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 16px;
    }

    .filter-step-chip {
        padding: 7px 12px;
        border-radius: 999px;
        font-size: 12px;
        color: #d2d9e8;
        border: 1px solid rgba(148, 163, 184, 0.32);
        background: rgba(15, 23, 42, 0.62);
    }

    .filter-step-chip.active {
        color: #eef2ff;
        border-color: rgba(99, 102, 241, 0.75);
        background: rgba(99, 102, 241, 0.24);
    }

    .package-filter-card {
        margin-bottom: 24px;
        background: linear-gradient(145deg, rgba(12, 18, 38, 0.95), rgba(12, 14, 28, 0.86));
        border: 1px solid rgba(99, 102, 241, 0.3);
        box-shadow: 0 20px 42px rgba(2, 6, 23, 0.55);
    }

    .package-filter-grid {
        margin-bottom: 0 !important;
    }

    .package-filter-card .form-label {
        font-weight: 600;
        color: #eef2ff;
    }

    .package-filter-card select {
        background: rgba(13, 17, 34, 0.88);
        border: 1px solid rgba(139, 92, 246, 0.45);
        color: #fff;
        -webkit-text-fill-color: #fff;
    }

    .filter-ui-select {
        min-height: 48px;
        border-radius: 12px;
        transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    }

    .filter-ui-select:hover {
        border-color: rgba(99, 102, 241, 0.78);
        background: rgba(17, 24, 39, 0.95);
    }

    .package-filter-card select:focus {
        outline: none;
        border-color: rgba(236, 72, 153, 0.7);
        box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.15);
    }

    .filter-ui-hint {
        margin-top: 12px;
        color: #a8b0c3;
        font-size: 13px;
        line-height: 1.6;
    }

    .review-on-demand {
        animation: reviewReveal 0.35s ease;
    }

    @keyframes reviewReveal {
        from {
            opacity: 0;
            transform: translateY(14px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .booking-form .form-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin-bottom: 20px;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea,
    .chat-input {
        width: 100%;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.14);
        color: #fff;
        border-radius: 12px;
        padding: 12px 14px;
        font-size: 14px;
    }

    .booking-form select,
    .package-filter-card select,
    .booking-form select option,
    .package-filter-card select option {
        color: #fff;
    }

    .booking-form select option,
    .package-filter-card select option {
        background: #0b1022;
    }

    .chat-input {
        min-height: 42px;
    }

    textarea.chat-input {
        min-height: 90px;
    }

    .booking-form textarea {
        min-height: 120px;
        grid-column: 1 / -1;
        resize: vertical;
    }

    .ai-generator-layout {
        display: grid;
        grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 1.15fr);
        gap: 24px;
        align-items: start;
    }

    .ai-upload-zone {
        min-height: 230px;
        border: 1px dashed rgba(99, 102, 241, 0.45);
        border-radius: 18px;
        background: rgba(99, 102, 241, 0.08);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
        padding: 28px;
        cursor: pointer;
        transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    }

    .ai-upload-zone:hover {
        border-color: rgba(99, 102, 241, 0.75);
        background: rgba(99, 102, 241, 0.12);
        transform: translateY(-2px);
    }

    .ai-upload-zone input {
        display: none;
    }

    .ai-upload-zone strong {
        color: #f8faff;
        font-size: 18px;
    }

    .ai-upload-zone span:not(.ai-upload-icon) {
        color: #9aa3c2;
        font-size: 13px;
    }

    .ai-upload-icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        box-shadow: 0 12px 28px rgba(99, 102, 241, 0.28);
    }

    .ai-upload-icon svg {
        width: 26px;
        height: 26px;
    }

    .ai-preview-frame {
        margin-top: 18px;
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.03);
    }

    .ai-preview-frame img {
        width: 100%;
        max-height: 360px;
        object-fit: contain;
        display: block;
    }

    .ai-generate-button {
        width: 100%;
        justify-content: center;
        margin-top: 18px;
    }

    .ai-generate-button:disabled {
        opacity: 0.65;
        cursor: not-allowed;
    }

    .ai-loading {
        margin-top: 16px;
        color: #cbd5e1;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }

    .ai-spinner {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.18);
        border-top-color: #8b5cf6;
        animation: aiSpin 0.8s linear infinite;
    }

    .ai-error {
        margin-top: 14px;
        color: #fecaca;
        background: rgba(239, 68, 68, 0.12);
        border: 1px solid rgba(239, 68, 68, 0.3);
        border-radius: 12px;
        padding: 10px 12px;
        font-size: 13px;
    }

    .ai-debug-output {
        margin-top: 12px;
        max-height: 320px;
        overflow: auto;
        white-space: pre-wrap;
        word-break: break-word;
        color: #dbeafe;
        background: rgba(15, 23, 42, 0.82);
        border: 1px solid rgba(148, 163, 184, 0.24);
        border-radius: 12px;
        padding: 12px;
        font-size: 12px;
        line-height: 1.5;
    }

    @keyframes aiSpin {
        to {
            transform: rotate(360deg);
        }
    }

    .table-wrap {
        overflow-x: auto;
    }

    .comparison-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 720px;
    }

    .comparison-table th,
    .comparison-table td {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 14px;
        text-align: left;
        color: #d4d4d4;
        font-size: 14px;
    }

    .comparison-table th {
        color: #fff;
        font-size: 13px;
        letter-spacing: 0.4px;
        text-transform: uppercase;
    }

    .mini-project-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 14px;
    }

    .mini-project-item {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: #d1d5db;
        font-size: 12px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        padding: 8px;
    }

    .mini-project-item img {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        object-fit: cover;
        flex-shrink: 0;
    }

    .tech-showcase-grid {
        margin-top: 16px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .tech-showcase-card {
        display: flex;
        gap: 10px;
        align-items: center;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 10px;
    }

    .tech-showcase-card img {
        width: 56px;
        height: 56px;
        object-fit: cover;
        border-radius: 10px;
        flex-shrink: 0;
    }

    .tech-showcase-card h5 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .chatbot-toggle {
        position: fixed;
        right: 24px;
        bottom: 24px;
        z-index: 1600;
        border: 0;
        border-radius: 999px;
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        color: #fff;
        padding: 12px 20px;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 14px 35px rgba(99, 102, 241, 0.35);
    }

    .chatbot-panel {
        position: fixed;
        right: 24px;
        bottom: 78px;
        width: min(360px, calc(100vw - 32px));
        background: rgba(10, 13, 24, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        overflow: hidden;
        transform: translateY(16px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 1600;
    }

    .chatbot-panel.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .chatbot-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .chatbot-header h3 {
        font-size: 16px;
    }

    .chatbot-header button {
        border: 0;
        background: transparent;
        color: #fff;
        font-size: 22px;
        cursor: pointer;
    }

    .chatbot-messages {
        max-height: 340px;
        overflow-y: auto;
        padding: 12px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .chat-msg {
        padding: 10px 12px;
        border-radius: 12px;
        font-size: 13px;
        line-height: 1.5;
    }

    .chat-msg.bot {
        background: rgba(99, 102, 241, 0.18);
        align-self: flex-start;
    }

    .chat-msg.user {
        background: rgba(16, 185, 129, 0.18);
        align-self: flex-end;
    }

    .chatbot-actions {
        padding: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        gap: 8px;
    }

    .chatbot-actions .btn-primary,
    .chatbot-actions .btn-secondary {
        white-space: nowrap;
    }
    /* Team Section */
        /* GRID */
    .team-grid {
        display: flex;
        gap: 30px;
        overflow-x: auto;        /* 👈 allows horizontal scroll */
        padding-bottom: 20px;
        scroll-behavior: smooth;
    }

    /* hide scrollbar (optional, looks premium) */
    .team-grid::-webkit-scrollbar {
        height: 6px;
    }
    .team-grid::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.15);
        border-radius: 10px;
    }

    /* CARD */
    .team-card {
        min-width: 320px;   /* 👈 prevents shrinking */
        max-width: 320px;
        flex-shrink: 0;     /* 👈 keeps cards in one row */
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        transition: all 0.3s ease;
    }
    /* .team-card {
        width: 100%;
        max-width: 320px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        transition: all 0.3s ease;
    } */

    .team-card:hover {
        transform: translateY(-10px);
        border-color: rgba(99, 102, 241, 0.3);
    }

    /* AVATAR */
    .team-avatar {
        width: 120px;
        height: 120px;
        margin: 0 auto 20px;
        position: relative;
        border-radius: 50%;
    }

    .team-avatar::before {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 50%;
        padding: 3px;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6, #f97316);
        -webkit-mask: linear-gradient(#fff 0 0) content-box,
                    linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    .avatar-inner {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
        background: linear-gradient(135deg, #1a1a2e, #16213e);
    }

    .avatar-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 25%;
        display: block;
    }

    /* TEXT */
    .team-card h3 {
        font-size: 20px;
        margin: 10px 0 4px;
    }

    .team-role {
        font-size: 14px;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6, #f97316);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    
    .team-skills {
        color: #666;
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .team-desc {
        color: #999;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .team-social {
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        transition: all 0.3s;
        cursor: pointer;
    }
    
    .social-icon:hover {
        background: rgba(99, 102, 241, 0.2);
    }
    /* FAQ Section */
    
    .faq-list {
        max-width: 900px;
        margin: 0 auto;
    }
    
    .faq-item {
        background: rgba(31, 41, 55, 0.4);
        border: 1px solid rgba(75, 85, 99, 0.3);
        border-radius: 16px;
        overflow: hidden;
        margin-top: 16px;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .faq-item:hover {
        border-color: rgba(139, 92, 246, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
    }
    
    .faq-item.active {
        background: rgba(31, 41, 55, 0.6);
        border-color: rgba(139, 92, 246, 0.6);
        box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
    }
    
    .faq-question {
        padding: 24px 28px;
        font-size: 18px;
        font-weight: 600;
        color: #ffffff;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
        position: relative;
    }
    
    .faq-question::after {
        content: '+';
        font-size: 28px;
        color: #8b5cf6;
        transition: transform 0.3s ease;
        font-weight: 300;
        flex-shrink: 0;
        margin-left: 20px;
    }
    
    .faq-item.active .faq-question::after {
        content: '−';
        transform: rotate(180deg);
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0 28px;
    }
    
    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 0 28px 24px 28px;
    }
    
    .faq-answer p {
        color: #d1d5db;
        font-size: 16px;
        line-height: 1.7;
        margin: 0;
    }
    /* Responsive */
    
    @media (max-width: 768px) {
        .section-header h2 {
            font-size: 36px;
        }
        .section-subtitle {
            font-size: 16px;
        }
        .faq-question {
            padding: 20px;
            font-size: 16px;
        }
        .faq-answer {
            padding: 0 20px;
        }
        .faq-item.active .faq-answer {
            padding: 0 20px 20px 20px;
        }
        .faq-question::after {
            font-size: 24px;
        }
    }
    /* Animation for new items */
    
    .faq-item {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }
    
    .faq-item:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .faq-item:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .faq-item:nth-child(3) {
        animation-delay: 0.3s;
    }
    
    .faq-item:nth-child(4) {
        animation-delay: 0.4s;
    }
    
    .faq-item:nth-child(5) {
        animation-delay: 0.5s;
    }
    
    .faq-item:nth-child(6) {
        animation-delay: 0.6s;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* .faq-list {
        max-width: 900px;
        margin: 0 auto;
    }
    
    .faq-item {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        padding: 25px 30px;
        margin-bottom: 15px;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .faq-item:hover {
        border-color: rgba(99, 102, 241, 0.3);
    }
    
    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
    }
    
    .faq-question::after {
        content: '+';
        font-size: 24px;
        color: #6366f1;
    } */
    /* CTA Section */
    
    .cta-section {
        padding: 100px 80px;
        display: flex;
        justify-content: center;
    }
    
    .cta-card {
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        border-radius: 30px;
        padding: 80px;
        text-align: center;
        max-width: 900px;
        width: 100%;
    }
    
    .cta-icon {
        font-size: 48px;
        margin-bottom: 20px;
    }
    
    .cta-card h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }
    
    .cta-card p {
        font-size: 16px;
        margin-bottom: 40px;
        opacity: 0.9;
    }
    
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .btn-white {
        padding: 14px 32px;
        background: #fff;
        border: none;
        border-radius: 25px;
        color: #6366f1;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
    }
    
    .btn-outline {
        padding: 14px 32px;
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 25px;
        color: #fff;
        cursor: pointer;
        font-size: 16px;
    }
    /* Footer */
    
    footer {
        padding: 60px 80px 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 60px;
        margin-bottom: 40px;
    }
    
    .footer-about p {
        color: #666;
        line-height: 1.6;
        margin: 20px 0;
    }
    
    .footer-social {
        display: flex;
        gap: 15px;
    }
    
    .footer-links h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .footer-links ul {
        list-style: none;
    }
    
    .footer-links li {
        margin-bottom: 12px;
    }
    
    .footer-links a {
        color: #666;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s;
    }
    
    .footer-links a:hover {
        color: #fff;
    }
    
    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #666;
        font-size: 14px;
    }
    
    .footer-bottom {
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .footer-bottom p {
        color: #666;
        font-size: 14px;
    }
    
    .footer-legal {
        display: flex;
        gap: 30px;
    }
    
    .footer-legal a {
        color: #666;
        text-decoration: none;
        font-size: 14px;
    }
    
    @media (max-width: 768px) {
        nav,
        .section,
        .cta-section,
        footer {
            padding-left: 20px;
            padding-right: 20px;
        }
        .hero {
            flex-direction: column;
            padding: 100px 20px;
        }
        .services-grid,
        .process-grid,
        .projects-grid,
        .testimonials-grid,
        .team-grid,
        .process-details-grid,
        .tech-expertise-grid {
            grid-template-columns: 1fr;
        }
        .features-grid {
            grid-template-columns: 1fr;
        }
        .footer-content {
            grid-template-columns: 1fr;
        }
    }

    /* =====================================================
   FINAL RESPONSIVE PATCH
   (NO LOOK & FEEL CHANGE)
===================================================== */

/* ---------- TABLET (≤1024px) ---------- */
@media (max-width: 1024px) {

    nav {
        padding: 14px 32px;
    }

    .hero {
        padding: 120px 40px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .mockup-card {
        width: 460px;
        height: 260px;
    }

    .stats {
        gap: 40px;
        flex-wrap: wrap;
    }

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

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

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

    .tech-expertise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* ---------- MOBILE (≤768px) ---------- */
@media (max-width: 768px) {

    /* HERO */
    .hero {
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        margin-top: 60px;
    }

    .mockup-card {
        width: 100%;
        max-width: 420px;
        height: 240px;
    }

    /* SECTIONS */
    .section h2 {
        font-size: 36px;
    }

    .services-grid,
    .features-grid,
    .process-grid,
    .projects-grid,
    .testimonials-grid,
    .detail-grid,
    .detail-grid-three,
    .process-details-grid,
    .tech-expertise-grid {
        grid-template-columns: 1fr;
    }

    .booking-form .form-grid {
        grid-template-columns: 1fr;
    }

    .filter-ui-head {
        flex-direction: column;
        gap: 12px;
    }

    .filter-ui-head h3 {
        font-size: 22px;
    }

    .filter-ui-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .filter-step-row {
        gap: 8px;
    }

    .filter-step-chip {
        font-size: 11px;
        padding: 6px 10px;
    }

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

    .tech-showcase-grid {
        grid-template-columns: 1fr;
    }

    .chatbot-toggle {
        right: 14px;
        bottom: 14px;
        padding: 10px 16px;
    }

    .chatbot-panel {
        right: 14px;
        bottom: 64px;
        width: calc(100vw - 28px);
    }

    .detail-header h1 {
        font-size: 34px;
    }

    /* CTA */
    .cta-card {
        padding: 50px 30px;
    }

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

/* ---------- SMALL MOBILE (≤480px) ---------- */
@media (max-width: 480px) {

    .hero h1 {
        font-size: 34px;
    }

    .stat h3 {
        font-size: 30px;
    }

    .service-card,
    .testimonial-card,
    .project-info {
        padding: 30px 20px;
    }

    .team-card {
        min-width: 280px;
        max-width: 280px;
    }

    .cta-card h2 {
        font-size: 28px;
    }

    .cta-card p {
        font-size: 14px;
    }
}
/* CTA Buttons – Responsive sizing only */

/* Default (Desktop & Web) – NO CHANGE */
.cta-buttons .btn-white,
.cta-buttons .btn-outline {
    padding: 14px 32px;
    font-size: 16px;
}

/* Tablet */
@media (max-width: 1024px) {
    .cta-buttons .btn-white,
    .cta-buttons .btn-outline {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-white,
    .cta-buttons .btn-outline {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 280px; /* keeps premium look */
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .cta-buttons .btn-white,
    .cta-buttons .btn-outline {
        padding: 10px 22px;
        font-size: 13px;
        max-width: 240px;
    }
}

/* LEFT GROUP */
.nav-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

/* TOGGLE */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 8px;
    flex-shrink: 0;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: inherit;
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    display: block;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* MOBILE NAV */
@media (max-width: 768px) {
    nav {
        padding: 10px 16px;
        min-height: 64px;
        gap: 10px;
    }

    .nav-left {
        gap: 8px;
        flex: 1;
        min-width: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .logo {
        gap: 8px;
    }

    .logo-icon {
        height: 36px;
    }

    .logo-icon img {
        max-width: 64px;
    }

    .logo-text h1 {
        font-size: 16px;
        font-weight: 600;
    }

    .logo-text p {
        font-size: 11px;
        margin-top: 1px;
    }

    .get-in-touch-btn {
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 999px;
        gap: 4px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: min(78vh, 640px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: rgba(0, 0, 0, 0.97);
        backdrop-filter: blur(14px);
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 12px 14px 18px;
        display: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links > li > a,
    .nav-parent {
        width: 100%;
        justify-content: space-between;
        font-size: 15px;
        padding: 12px 12px;
        border-radius: 10px;
    }

    .has-dropdown {
        width: 100%;
        text-align: left;
    }

    .has-dropdown:hover .dropdown-menu {
        display: none;
    }

    .has-dropdown.is-open .dropdown-menu {
        display: block;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        max-width: none;
        margin: 2px 0 6px;
        padding: 6px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: none;
        animation: none;
    }

    .dropdown-menu a {
        padding: 10px 12px;
        font-size: 13px;
        white-space: normal;
    }

    .has-dropdown.is-open .nav-chevron {
        transform: rotate(225deg) translateY(-1px);
    }

    .submenu-parent {
        padding: 10px 12px;
        font-size: 13px;
    }

    .submenu-parent .nav-chevron {
        transform: rotate(45deg) translateY(-1px);
    }

    .has-submenu.is-open > .submenu-parent .nav-chevron {
        transform: rotate(225deg) translateY(-1px);
    }

    .submenu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        margin: 4px 0 6px;
        padding: 6px;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .has-submenu.is-open > .submenu {
        display: block;
    }
}

.tech-category-block {
    max-width: 1180px;
    margin: 0 auto 36px;
    scroll-margin-top: 96px;
}

.tech-category-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-category-head h3 {
    font-size: 22px;
    margin: 0;
}

.tech-category-head span {
    color: #8b93b3;
    font-size: 13px;
}

.tech-expertise-grid .detail-card {
    scroll-margin-top: 100px;
}

/* SMALL PHONES */
@media (max-width: 400px) {
    nav {
        padding: 10px 12px;
        gap: 8px;
    }

    .nav-left {
        gap: 6px;
    }

    .nav-toggle {
        width: 36px;
        height: 36px;
        padding: 7px;
    }

    .logo-icon {
        height: 32px;
    }

    .logo-icon img {
        max-width: 56px;
    }

    .logo-text h1 {
        font-size: 14px;
    }

    .get-in-touch-btn {
        padding: 7px 10px;
        font-size: 11px;
    }
}

@media (max-width: 340px) {
    .logo-text {
        display: none;
    }
}

/* =====================================================
   TOXSL-INSPIRED HOME ENHANCEMENTS (dark theme)
===================================================== */

.hero-carousel {
    position: relative;
    min-height: 100vh;
    padding: 120px 80px 90px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.hero-glow-a {
    width: 420px;
    height: 420px;
    top: 10%;
    left: -8%;
    background: #6366f1;
    animation: glowDrift 12s ease-in-out infinite;
}

.hero-glow-b {
    width: 360px;
    height: 360px;
    right: -5%;
    bottom: 12%;
    background: #8b5cf6;
    animation: glowDrift 14s ease-in-out infinite reverse;
}

@keyframes glowDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(24px, -18px) scale(1.08); }
}

.hero-carousel-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    min-height: 520px;
}

.hero-slide {
    display: none;
    align-items: center;
    gap: 48px;
    animation: heroFadeIn 0.65s ease;
}

.hero-slide.is-active {
    display: flex;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-lead {
    font-size: 18px;
    color: #a8b0cc;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-lead strong {
    color: #e8ecff;
}

.hero-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-proof-chip {
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, 0.35);
    background: rgba(99, 102, 241, 0.12);
    color: #d6dcff;
}

.pulse-badge {
    animation: pulseBadge 2.8s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(99, 102, 241, 0); }
}

.hero-image-frame {
    position: relative;
    width: min(520px, 42vw);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.35);
    box-shadow: 0 28px 70px rgba(79, 70, 229, 0.35);
    background: linear-gradient(145deg, #12162b, #0b0f1f);
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 300px;
}

.hero-frame-ring {
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    pointer-events: none;
    animation: ringSpin 18s linear infinite;
}

@keyframes ringSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.float-slow {
    animation: floatSlow 6s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-carousel-controls {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 28px;
}

.hero-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.hero-nav-btn:hover {
    background: rgba(99, 102, 241, 0.35);
    transform: scale(1.06);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    transform: scale(1.25);
}

.trusted-desc {
    margin: 6px 0 0;
    font-size: 13px;
    color: #9aa3c2;
    line-height: 1.45;
    text-align: left;
}

.about-showcase-section {
    padding-top: 20px;
}

.about-showcase {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.about-visual-cluster {
    position: relative;
    min-height: 420px;
}

.about-float-img {
    position: absolute;
    width: 46%;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    object-fit: cover;
    animation: aboutFloat 7s ease-in-out infinite;
}

.about-float-1 { top: 0; left: 0; animation-delay: 0s; }
.about-float-2 { top: 8%; right: 0; animation-delay: 0.8s; }
.about-float-3 { bottom: 8%; left: 6%; animation-delay: 1.4s; }
.about-float-4 { bottom: 0; right: 10%; animation-delay: 2s; }

@keyframes aboutFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-visual-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.9);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.45);
}

.about-lead {
    text-align: left;
    margin: 0 0 16px;
}

.plain-explainer {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(99, 102, 241, 0.28);
    background: rgba(99, 102, 241, 0.08);
    color: #c5cbe4;
    line-height: 1.6;
    margin-bottom: 22px;
}

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

.about-stat-card {
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.about-stat-card h3 {
    font-size: 34px;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-card p {
    color: #9aa3c2;
    font-size: 13px;
}

.section-header-compact {
    margin-bottom: 28px;
}

.section-header-compact h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    margin-bottom: 8px;
}

.section-header-compact .section-subtitle {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.services-home-layout {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(240px, 300px) 1fr;
    gap: 20px;
    align-items: start;
}

.services-steps-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-step-btn {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #c5cbe4;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    font-family: inherit;
}

.service-step-btn.is-active,
.service-step-btn:hover {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.15);
    color: #fff;
    transform: translateX(3px);
}

.service-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(99, 102, 241, 0.2);
}

.service-step-icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.service-step-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.service-step-label {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.service-step-hint {
    font-size: 12px;
    color: #8b93b3;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-step-btn.is-active .service-step-hint,
.service-step-btn:hover .service-step-hint {
    color: #b8c0df;
}

.services-detail-panel {
    position: relative;
    min-height: 320px;
}

.service-detail-card {
    display: none;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(155deg, rgba(99, 102, 241, 0.12), rgba(255, 255, 255, 0.02));
    overflow: hidden;
    animation: heroFadeIn 0.4s ease;
}

.service-detail-card.is-active {
    display: grid;
    grid-template-columns: minmax(180px, 42%) 1fr;
}

.service-detail-media {
    position: relative;
    min-height: 240px;
    overflow: hidden;
}

.service-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-detail-media .service-visual-icon {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
}

.service-detail-body {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-body h3 {
    margin-bottom: 8px;
    font-size: 22px;
}

.service-detail-body > p {
    color: #9aa3c2;
    line-height: 1.55;
    margin-bottom: 14px;
    font-size: 14px;
}

.service-detail-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 8px;
}

.service-detail-features li {
    position: relative;
    padding-left: 16px;
    color: #d0d6ef;
    font-size: 13px;
    line-height: 1.4;
}

.service-detail-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8b5cf6;
}

.service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.services-visual-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-visual-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-visual-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 22px 50px rgba(79, 70, 229, 0.25);
}

.service-visual-media {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.service-visual-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-visual-card:hover .service-visual-media img {
    transform: scale(1.06);
}

.service-visual-icon {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-visual-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.service-visual-body {
    padding: 22px;
}

.service-visual-body h3 {
    margin-bottom: 8px;
    font-size: 22px;
}

.service-visual-body p {
    color: #9aa3c2;
    line-height: 1.55;
    margin-bottom: 12px;
}

.innovation-showcase-section {
    position: relative;
}

.innovation-showcase-section::before {
    content: "";
    position: absolute;
    top: 8%;
    left: 50%;
    width: min(76vw, 920px);
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1), transparent 68%);
    transform: translateX(-50%);
    pointer-events: none;
}

.innovation-showcase-header {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
    align-items: end;
    gap: 48px;
}

.innovation-showcase-heading h2 {
    max-width: 760px;
    margin: 14px 0 16px;
    font-size: clamp(34px, 4.3vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.innovation-showcase-heading > p {
    max-width: 720px;
    margin: 0;
    color: #aeb7d3;
    font-size: 17px;
    line-height: 1.7;
}

.innovation-showcase-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.innovation-showcase-proof div {
    min-height: 112px;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.innovation-showcase-proof div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.innovation-showcase-proof strong {
    color: #f8fafc;
    font-size: 22px;
    line-height: 1.15;
}

.innovation-showcase-proof span {
    margin-top: 7px;
    color: #8d98b8;
    font-size: 12px;
    line-height: 1.4;
}

.innovation-showcase-grid {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.innovation-showcase-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.92fr);
    min-height: 330px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(18, 25, 49, 0.98), rgba(9, 14, 31, 0.98));
    color: inherit;
    text-decoration: none;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.innovation-showcase-media {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #10172c;
}

.innovation-showcase-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 62%, rgba(9, 14, 31, 0.42));
    pointer-events: none;
}

.innovation-showcase-media img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease, filter 0.65s ease;
}

.innovation-showcase-card:not(.innovation-showcase-featured) .innovation-showcase-media img {
    object-position: top center;
}

.innovation-project-number {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(5, 10, 24, 0.74);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.innovation-showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 212, 191, 0.42);
    box-shadow: 0 30px 72px rgba(0, 0, 0, 0.32);
}

.innovation-showcase-card:hover .innovation-showcase-media img {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.03);
}

.innovation-showcase-card:focus-visible {
    outline: 3px solid rgba(94, 234, 212, 0.85);
    outline-offset: 4px;
}

.innovation-showcase-content {
    min-width: 0;
    padding: 30px 27px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.innovation-showcase-content .innovation-project-type {
    display: inline-block;
    align-self: flex-start;
    padding: 7px 10px;
    border: 1px solid rgba(94, 234, 212, 0.18);
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.08);
    color: #5eead4;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.innovation-showcase-content h3 {
    color: #fff;
    font-size: clamp(21px, 2vw, 27px);
    line-height: 1.15;
    margin: 0 0 12px;
    letter-spacing: -0.025em;
}

.innovation-showcase-content p {
    color: #aeb7d3;
    font-size: 13px;
    line-height: 1.65;
    margin: 0 0 22px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.innovation-project-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #f8fafc;
    font-size: 13px;
    font-weight: 750;
}

.innovation-project-link svg {
    width: 18px;
    height: 18px;
    color: #5eead4;
    transition: transform 0.3s ease;
}

.innovation-showcase-card:hover .innovation-project-link svg {
    transform: translateX(5px);
}

.innovation-capability-row {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 24px auto 0;
    padding: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
}

.innovation-capability-row span {
    padding: 9px 13px;
    border: 1px solid rgba(94, 234, 212, 0.2);
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.08);
    color: #cbd5e1;
    font-size: 12px;
}

.innovation-capability-row .innovation-capability-label {
    padding-left: 4px;
    border: 0;
    background: transparent;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.solutions-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.solution-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.45);
}

.solution-card-media {
    height: 160px;
    overflow: hidden;
}

.solution-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.solution-card:hover .solution-card-media img {
    transform: scale(1.08);
}

.solution-card-body {
    padding: 18px;
}

.solution-card-body h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.solution-card-body p {
    color: #9aa3c2;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.solution-link {
    color: #a5b4fc;
    font-size: 14px;
    text-decoration: none;
}

.solution-link:hover {
    color: #fff;
}

.process-home-section,
.services-home-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.process-home-layout {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 18px;
    align-items: start;
}

.process-steps-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.process-step-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #c5cbe4;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.process-step-btn.is-active,
.process-step-btn:hover {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.15);
    color: #fff;
    transform: translateX(4px);
}

.process-step-num {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    background: rgba(99, 102, 241, 0.25);
    flex-shrink: 0;
}

.process-step-label {
    font-size: 15px;
    font-weight: 600;
}

.process-detail-panel {
    position: relative;
    min-height: 320px;
}

.process-detail-card {
    display: none;
    padding: 26px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(155deg, rgba(99, 102, 241, 0.12), rgba(255, 255, 255, 0.02));
    animation: heroFadeIn 0.45s ease;
}

.process-detail-card.is-active {
    display: block;
}

.process-detail-head {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.process-detail-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.process-detail-head h3 {
    margin-bottom: 6px;
}

.process-detail-head p {
    color: #9aa3c2;
    line-height: 1.55;
}

.process-detail-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 16px;
}

.process-detail-columns h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8b5cf6;
    margin-bottom: 10px;
}

.process-detail-columns ul {
    list-style: none;
    padding: 0;
}

.process-detail-columns li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    color: #c5cbe4;
    font-size: 14px;
    line-height: 1.5;
}

.process-detail-columns li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6366f1;
}

.project-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e8ecff;
    z-index: 2;
}

.why-layout {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.why-visual {
    position: relative;
}

.why-hero-img {
    width: 100%;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.why-floating-card {
    position: absolute;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(10, 12, 24, 0.92);
    border: 1px solid rgba(99, 102, 241, 0.35);
    backdrop-filter: blur(12px);
    animation: floatSlow 5s ease-in-out infinite;
}

.why-floating-card strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.why-floating-card span {
    font-size: 12px;
    color: #9aa3c2;
}

.why-floating-a {
    top: 12%;
    right: -12px;
}

.why-floating-b {
    bottom: 10%;
    left: -12px;
    animation-delay: 1s;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.why-point {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.why-point:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateX(6px);
}

.why-point h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.why-point p {
    color: #9aa3c2;
    font-size: 14px;
    line-height: 1.55;
}

.tech-marquee-section {
    padding-bottom: 30px;
}

.marquee-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    margin: 24px 0;
}

.marquee-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-chip {
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, 0.35);
    background: rgba(99, 102, 241, 0.1);
    color: #e0e7ff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.testimonial-carousel-wrap {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.testimonial-slide {
    display: none;
    width: 100%;
    animation: heroFadeIn 0.45s ease;
}

.testimonial-slide.is-active {
    display: block;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.carousel-btn:hover {
    background: rgba(99, 102, 241, 0.35);
}

.faq-home-section .faq-list {
    max-width: 860px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .hero-carousel {
        padding: 110px 40px 70px;
    }

    .hero-slide.is-active {
        flex-direction: column;
        text-align: center;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-proof-row {
        justify-content: center;
    }

    .about-showcase,
    .why-layout,
    .process-home-layout,
    .services-home-layout {
        grid-template-columns: 1fr;
    }

    .services-steps-nav,
    .process-steps-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .service-step-btn,
    .process-step-btn {
        transform: none;
    }

    .service-step-btn.is-active,
    .service-step-btn:hover,
    .process-step-btn.is-active,
    .process-step-btn:hover {
        transform: none;
    }

    .service-detail-card.is-active {
        grid-template-columns: 1fr;
    }

    .service-detail-media {
        min-height: 180px;
        max-height: 200px;
    }

    .service-step-hint {
        display: none;
    }

    .innovation-showcase-grid {
        grid-template-columns: 1fr;
    }

    .innovation-showcase-header {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 26px;
    }

    .innovation-showcase-proof {
        max-width: 520px;
    }

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

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

@media (max-width: 768px) {
    .hero-carousel {
        padding: 100px 20px 60px;
    }

    .hero-carousel-inner {
        min-height: auto;
    }

    .hero-image-frame {
        width: 100%;
        max-width: 420px;
    }

    .about-visual-cluster {
        min-height: 300px;
    }

    .innovation-showcase-grid {
        grid-template-columns: 1fr;
    }

    .innovation-showcase-header {
        margin-bottom: 26px;
        gap: 22px;
    }

    .innovation-showcase-heading h2 {
        font-size: clamp(32px, 10vw, 44px);
    }

    .innovation-showcase-heading > p {
        font-size: 15px;
        line-height: 1.65;
    }

    .innovation-showcase-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .innovation-showcase-media {
        aspect-ratio: 16 / 10;
    }

    .innovation-showcase-media::after {
        background: linear-gradient(180deg, transparent 68%, rgba(9, 14, 31, 0.25));
    }

    .innovation-showcase-media img {
        min-height: 0;
    }

    .innovation-showcase-content {
        padding: 24px;
    }

    .innovation-showcase-content p {
        -webkit-line-clamp: 3;
    }

    .innovation-capability-row {
        padding: 12px;
        border-radius: 14px;
    }

    .innovation-capability-row .innovation-capability-label {
        flex-basis: 100%;
    }

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

    .process-detail-columns {
        grid-template-columns: 1fr;
    }

    .services-steps-nav,
    .process-steps-nav {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .service-step-btn {
        padding: 11px 12px;
    }

    .service-detail-body {
        padding: 18px 16px 20px;
    }

    .service-detail-body h3 {
        font-size: 20px;
    }

    .service-detail-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }

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

/* =====================================================
   PREMIUM UI — HERO FIX, REVIEWS, CTA, FAB, ALL PAGES
===================================================== */

/* Fixed-size premium hero image (no jump between slides) */
.hero-visual-fixed {
    width: 540px;
    min-width: 540px;
    max-width: 540px;
    height: 400px;
    flex-shrink: 0;
    position: relative;
}

.hero-image-frame {
    width: 540px !important;
    height: 400px !important;
    min-height: 400px;
    max-height: 400px;
    border-radius: 24px;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    object-position: center;
}

.hero-frame-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.12) 50%, transparent 60%);
    transform: translateX(-100%);
    animation: heroShine 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes heroShine {
    0%, 70% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-carousel-inner {
    min-height: 440px;
}

.hero-slide.is-active {
    min-height: 400px;
    align-items: center;
}

/* Blink / pulse hints */
@keyframes blinkHint {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(0.98); }
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.55); }
    50% { box-shadow: 0 0 0 14px rgba(99, 102, 241, 0); }
}

.blink-hint {
    animation: blinkHint 1.8s ease-in-out infinite;
}

.blink-hint-soft {
    animation: blinkHint 2.4s ease-in-out infinite;
}

.fab-pulse {
    animation: fabPulse 2s ease-in-out infinite;
}

.fab-pulse-alt {
    animation: fabPulse 2s ease-in-out infinite 0.6s;
}

/* Floating side actions */
.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 100px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.floating-hint {
    font-size: 11px;
    font-weight: 600;
    color: #e0e7ff;
    background: rgba(99, 102, 241, 0.9);
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.floating-hint.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.fab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(12, 14, 28, 0.92);
    backdrop-filter: blur(14px);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.25s ease, background 0.25s ease;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.fab:hover {
    transform: translateX(-4px) scale(1.03);
    background: rgba(99, 102, 241, 0.35);
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-color: rgba(37, 211, 102, 0.4);
}

.fab-meeting {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: rgba(139, 92, 246, 0.5);
}

.fab-icon {
    font-size: 16px;
    line-height: 1;
}

/* Premium CTA */
.cta-premium-section {
    padding: 80px 60px 100px;
}

.cta-premium-card {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.35);
    background: linear-gradient(135deg, #12152e 0%, #1a1040 45%, #0f172a 100%);
    box-shadow: 0 30px 80px rgba(79, 70, 229, 0.25);
}

.cta-premium-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    right: -100px;
    top: -100px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35), transparent 70%);
    pointer-events: none;
}

.cta-premium-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    padding: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-premium-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c4b5fd;
    margin-bottom: 14px;
}

.cta-premium-copy h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.cta-premium-copy p {
    color: #b8c0dc;
    line-height: 1.65;
    margin-bottom: 18px;
}

.cta-premium-list {
    list-style: none;
    margin-bottom: 28px;
}

.cta-premium-list li {
    color: #d2daf5;
    font-size: 14px;
    margin-bottom: 8px;
}

.cta-premium-buttons {
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-cta-glow {
    padding: 14px 28px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff, #e0e7ff);
    color: #4338ca;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
    transition: transform 0.25s ease;
}

.btn-cta-glow:hover {
    transform: translateY(-2px) scale(1.02);
}

.btn-cta-ghost {
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.25s ease;
}

.btn-cta-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-image-frame {
    width: 100%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-float-stat {
    position: absolute;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(99, 102, 241, 0.4);
    backdrop-filter: blur(10px);
}

.cta-float-stat strong {
    display: block;
    font-size: 18px;
}

.cta-float-stat span {
    font-size: 11px;
    color: #9aa3c2;
}

.cta-float-a {
    top: 20%;
    left: -10px;
}

.cta-float-b {
    bottom: 15%;
    right: 10px;
}

/* Professional reviews */
.review-pro-section {
    padding-top: 40px;
    position: relative;
}

.review-pro-section::before {
    content: "";
    position: absolute;
    top: 4%;
    right: 6%;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1), transparent 70%);
    pointer-events: none;
}

.review-pro-layout {
    max-width: 1180px;
    margin: 0 auto 36px;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.review-score-panel {
    padding: 30px 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(160deg, rgba(20, 184, 166, 0.12), rgba(255, 255, 255, 0.03)),
        linear-gradient(180deg, rgba(9, 14, 31, 0.96), rgba(12, 18, 38, 0.98));
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
    text-align: center;
}

.review-score-ring {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 6px;
}

.review-score-value {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-score-max {
    font-size: 18px;
    color: #9aa3c2;
}

.review-score-stars {
    color: #fbbf24;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.review-score-label {
    font-size: 13px;
    color: #9aa3c2;
    margin-bottom: 18px;
}

.review-score-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.review-score-stats strong {
    display: block;
    font-size: 18px;
}

.review-score-stats span {
    font-size: 10px;
    color: #9aa3c2;
    text-transform: uppercase;
}

.review-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-trust-badge {
    font-size: 11px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #d1fae5;
}

.review-featured-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.review-featured-carousel {
    flex: 1;
    min-height: 420px;
    position: relative;
    min-width: 0;
}

.review-pro-card {
    display: none;
    padding: 18px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        linear-gradient(180deg, rgba(10, 15, 31, 0.98), rgba(10, 15, 31, 0.94));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.review-pro-card.is-active {
    display: block;
    animation: heroFadeIn 0.45s ease;
}

.review-pro-card-shell {
    display: grid;
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.review-pro-media {
    position: relative;
    min-height: 380px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top left, rgba(20, 184, 166, 0.24), transparent 52%),
        linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(9, 14, 31, 0.98));
}

.review-pro-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.review-country-chip {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(7, 12, 24, 0.72);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.review-country-chip-mini {
    position: static;
    padding: 6px 10px;
    font-size: 10px;
}

.review-pro-copy {
    min-width: 0;
    padding: 14px 10px 10px 0;
    display: flex;
    flex-direction: column;
}

.review-quote-icon {
    position: absolute;
    top: 14px;
    right: 22px;
    font-size: 72px;
    line-height: 1;
    color: rgba(94, 234, 212, 0.18);
    font-family: Georgia, serif;
}

.review-pro-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.review-pro-text {
    font-size: 17px;
    line-height: 1.82;
    color: #e8ecff;
    margin-bottom: 24px;
    max-width: 100%;
}

.review-pro-author {
    display: flex;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-avatar-lg {
    width: 64px;
    height: 64px;
}

.author-info h4 {
    margin: 0 0 6px;
    font-size: 22px;
}

.review-pro-role {
    color: #9aa3c2 !important;
    font-size: 14px !important;
    margin: 0 0 4px;
}

.review-pro-company {
    margin: 0 0 8px;
    color: #f8fafc;
    font-size: 13px;
    font-weight: 600;
}

.review-pro-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.review-pro-mini {
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
        linear-gradient(180deg, rgba(9, 14, 31, 0.94), rgba(12, 18, 38, 0.96));
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-pro-mini:hover {
    transform: translateY(-4px);
    border-color: rgba(94, 234, 212, 0.3);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.2);
}

.review-pro-mini-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.review-pro-mini p {
    font-size: 13px;
    color: #c5cbe4;
    line-height: 1.65;
    margin: 14px 0 18px;
}

.review-pro-mini-author {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.review-pro-mini-author img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.review-avatar-fallback {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.85), rgba(14, 165, 233, 0.82));
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.review-avatar-fallback-lg {
    width: 100%;
    height: 100%;
    border-radius: 0;
    font-size: 56px;
    background:
        radial-gradient(circle at top, rgba(94, 234, 212, 0.28), transparent 42%),
        linear-gradient(160deg, rgba(14, 165, 233, 0.72), rgba(15, 23, 42, 0.94));
}

.review-pro-mini-author strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.review-pro-mini-author span {
    display: block;
    font-size: 12px;
    color: #9aa3c2;
}

.review-pro-mini-author small {
    display: block;
    margin-top: 4px;
    color: #f8fafc;
    font-size: 11px;
    opacity: 0.9;
}

/* Inner page hero */
.page-hero {
    position: relative;
    padding: 130px 60px 50px;
    overflow: hidden;
}

.page-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    top: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent 65%);
    pointer-events: none;
}

.page-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-hero h1 {
    font-size: 48px;
    line-height: 1.15;
    margin: 12px 0;
}

.page-hero-subtitle {
    color: #9aa3c2;
    font-size: 17px;
    line-height: 1.65;
    max-width: 520px;
}

.page-hero-image-box {
    width: 100%;
    height: 280px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.page-hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Global page polish */
.section.page-section {
    padding-top: 40px;
}

.detail-card,
.service-card,
.feature-card,
.process-step,
.project-card {
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.chatbot-toggle {
    bottom: 24px;
    right: 24px;
}

@media (max-width: 1024px) {
    .hero-visual-fixed,
    .hero-image-frame {
        width: 100% !important;
        min-width: 0;
        max-width: 480px;
    }

    .hero-image-frame {
        height: 340px !important;
        min-height: 340px;
    }

    .review-pro-layout {
        grid-template-columns: 1fr;
    }

    .review-pro-card-shell {
        grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    }

    .cta-premium-grid {
        grid-template-columns: 1fr;
    }

    .page-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-hero-subtitle {
        margin: 0 auto;
    }

    .review-pro-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .floating-actions {
        right: 10px;
        bottom: 88px;
    }

    .fab-label {
        display: none;
    }

    .fab {
        width: 48px;
        height: 48px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .floating-hint {
        display: none;
    }

    .hero-visual-fixed {
        height: auto;
        min-height: 0;
    }

    .hero-image-frame {
        height: 280px !important;
        min-height: 280px !important;
    }

    .cta-premium-section {
        padding: 50px 20px;
    }

    .cta-premium-grid {
        padding: 28px 22px;
    }

    .cta-premium-copy h2 {
        font-size: 28px;
    }

    .review-score-panel {
        padding: 24px 18px;
    }

    .review-featured-wrap {
        gap: 10px;
        align-items: stretch;
    }

    .review-featured-carousel {
        min-height: 0;
    }

    .review-pro-card {
        padding: 14px;
        border-radius: 22px;
    }

    .review-pro-card-shell {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .review-pro-media {
        min-height: 250px;
    }

    .review-pro-copy {
        padding: 0 4px 6px;
    }

    .review-pro-rating {
        align-items: flex-start;
    }

    .review-pro-text {
        font-size: 15px;
        line-height: 1.72;
        margin-bottom: 18px;
    }

    .author-info h4 {
        font-size: 18px;
    }

    .review-pro-grid {
        grid-template-columns: 1fr;
    }

    .review-pro-mini {
        padding: 18px;
    }

    .page-hero {
        padding: 110px 20px 30px;
    }

    .page-hero h1 {
        font-size: 34px;
    }
}

/* =====================================================
   FOUNDER & CEO — RAGHAV TOMAR
===================================================== */

.founder-section {
    position: relative;
    padding-top: 36px;
    padding-bottom: 36px;
}

.founder-shell {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.15fr);
    gap: 40px;
    align-items: center;
    padding: 34px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        radial-gradient(circle at 18% 20%, rgba(99, 102, 241, 0.16), transparent 42%);
    overflow: hidden;
}

.founder-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    right: -80px;
    bottom: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.22), transparent 68%);
    pointer-events: none;
    filter: blur(10px);
}

.founder-media {
    position: relative;
    z-index: 1;
}

.founder-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    max-width: 420px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
    background: #111827;
}

.founder-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transform: scale(1.02);
    transition: transform 0.7s ease;
}

.founder-shell:hover .founder-frame img {
    transform: scale(1.06);
}

.founder-frame-ring {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35));
}

.founder-badge-float {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(8, 10, 18, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: #e8eaf5;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.founder-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.18);
}

.founder-copy {
    position: relative;
    z-index: 1;
}

.founder-kicker {
    color: #9aa3c2;
    font-size: 15px;
    margin: 10px 0 14px;
    max-width: 460px;
    line-height: 1.5;
}

.founder-name {
    font-size: clamp(34px, 4.5vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0 0 8px;
    background: linear-gradient(135deg, #ffffff 20%, #c7d2fe 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.founder-role {
    color: #a5b4fc;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
}

.founder-quote {
    margin: 0 0 16px;
    padding: 16px 18px;
    border-left: 3px solid rgba(99, 102, 241, 0.8);
    background: rgba(99, 102, 241, 0.08);
    border-radius: 0 14px 14px 0;
    color: #e5e7f5;
    font-size: 16px;
    line-height: 1.65;
    font-style: italic;
}

.founder-bio {
    color: #9aa3c2;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 540px;
}

.founder-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.founder-highlights li {
    padding: 14px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.founder-highlights strong {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-bottom: 4px;
}

.founder-highlights span {
    color: #8b93b3;
    font-size: 12px;
    line-height: 1.4;
}

.founder-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.founder-link {
    color: #c7d2fe;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.founder-link:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .founder-shell {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 24px;
    }

    .founder-frame {
        max-width: 360px;
    }

    .founder-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .founder-section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .founder-shell {
        padding: 18px;
        border-radius: 22px;
    }

    .founder-frame {
        max-width: 100%;
        aspect-ratio: 5 / 6;
    }

    .founder-name {
        font-size: 34px;
    }

    .founder-quote {
        font-size: 15px;
        padding: 14px;
    }

    .founder-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

.founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 8px 12px 8px 8px;
    border-radius: 999px;
    border: 1px solid rgba(10, 102, 194, 0.45);
    background: rgba(10, 102, 194, 0.12);
    color: #cfe4ff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.founder-linkedin:hover {
    background: rgba(10, 102, 194, 0.22);
    border-color: rgba(10, 102, 194, 0.7);
    color: #fff;
    transform: translateY(-1px);
}

.founder-linkedin-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0a66c2;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

/* =====================================================
   MEETING BOOKING
===================================================== */

.meeting-booking-section {
    scroll-margin-top: 90px;
}

.meeting-booking-form {
    max-width: 920px;
    margin: 0 auto;
}

.meeting-form-block {
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.meeting-form-block:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.meeting-form-block h3 {
    font-size: 16px;
    margin-bottom: 14px;
    color: #e8eaf5;
}

.meeting-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meeting-field span,
.meeting-slot-label {
    font-size: 13px;
    color: #9aa3c2;
    font-weight: 500;
}

.meeting-field-full {
    grid-column: 1 / -1;
}

.meeting-slot-wrap {
    margin-top: 16px;
}

.meeting-slot-label {
    display: block;
    margin-bottom: 10px;
}

.meeting-slot-label small {
    color: #6b7394;
    font-weight: 400;
}

.meeting-slot-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.meeting-slot-btn {
    padding: 12px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: #d5d9ef;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.meeting-slot-btn:hover {
    border-color: rgba(99, 102, 241, 0.45);
    background: rgba(99, 102, 241, 0.12);
    color: #fff;
}

.meeting-slot-btn.is-selected {
    border-color: rgba(99, 102, 241, 0.75);
    background: rgba(99, 102, 241, 0.22);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.25);
}

.meeting-slot-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.meeting-slot-hint {
    margin-top: 10px;
    font-size: 12px;
    color: #7f88a8;
}

.meeting-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.meeting-note {
    color: #7f88a8;
    font-size: 12px;
    margin: 0;
}

.meeting-alert {
    max-width: 920px;
    margin: 0 auto 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
}

.meeting-alert ul {
    margin: 0;
    padding-left: 18px;
}

.meeting-alert-success {
    border: 1px solid rgba(16, 185, 129, 0.45);
    background: rgba(16, 185, 129, 0.12);
    color: #d1fae5;
}

.meeting-alert-error {
    border: 1px solid rgba(239, 68, 68, 0.45);
    background: rgba(239, 68, 68, 0.12);
    color: #fecaca;
}

@media (max-width: 900px) {
    .meeting-slot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .meeting-slot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .meeting-form-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

.meeting-date-picker {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.meeting-date-picker input[type="date"] {
    width: 100%;
    padding-right: 48px;
    color-scheme: dark;
    cursor: pointer;
    min-height: 48px;
}

.meeting-date-picker input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 48px;
    height: 100%;
    cursor: pointer;
}

.meeting-date-calendar-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.18);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 2;
}

.meeting-date-calendar-btn:hover {
    background: rgba(99, 102, 241, 0.32);
}
