/* ========== RESET & GLOBAL ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: #0a0e17;
    color: #f1f5f9;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0e17;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3b82f6, #06b6d4);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2563eb, #0891b2);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #3b82f6 #0a0e17;
}

img {
    max-width: 100%;
    display: block;
}

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

/* ========== CIRCUIT BACKGROUND ========== */
.circuit-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.circuit-lines {
    width: 100%;
    height: 100%;
}

/* ========== HEADER ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.nav {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #94a3b8;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.1);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #f1f5f9;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(30px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.mobile-close:hover {
    opacity: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    padding: 14px 30px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mobile-link:hover {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.15);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    z-index: 1;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 40px;
    max-width: 1300px;
    margin: 0 auto;
    gap: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #60a5fa;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.blink-dot {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px #3b82f6; }
    50% { opacity: 0.3; box-shadow: 0 0 2px #3b82f6; }
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-glow {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(59, 130, 246, 0.5);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #94a3b8;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-ghost:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.arrow {
    transition: transform 0.3s ease;
}

.btn-ghost:hover .arrow {
    transform: translateY(4px);
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 24px;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    font-family: 'JetBrains Mono', monospace;
}

.metric-number .plus {
    color: #3b82f6;
}

.metric-label {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 180px;
    height: 180px;
    background: #3b82f6;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 120px;
    height: 120px;
    background: #06b6d4;
    top: 50%;
    right: 5%;
    animation-delay: -2s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    background: #8b5cf6;
    bottom: 15%;
    left: 30%;
    animation-delay: -4s;
}

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

.tech-ring {
    width: 250px;
    height: 250px;
    border: 2px solid rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    position: relative;
    animation: spin 20s linear infinite;
}

.tech-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 15px #3b82f6;
}

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

/* ========== SECTION INTRO ========== */
.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro.left {
    text-align: left;
    margin-bottom: 20px;
}

.section-intro h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.section-label {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

/* ========== SERVICES ========== */
.services {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.service-block {
    margin-bottom: 80px;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-header {
    max-width: 1300px;
    margin: 0 auto 30px;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

/* RIGHT-ALIGNED SERVICE */
.service-right .service-header {
    flex-direction: row-reverse;
    text-align: right;
}

.service-right .tech-cloud {
    justify-content: flex-end;
}

.service-right .sub-services {
    justify-content: flex-end;
}

.service-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #3b82f6;
    letter-spacing: 2px;
    padding-top: 4px;
    flex-shrink: 0;
}

.service-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.85;
}

.service-header-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.service-header-text p {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 650px;
    margin-bottom: 14px;
}

.service-right .service-header-text p {
    margin-left: auto;
}

.tech-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.tech-cloud span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.08);
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tech-cloud span:hover {
    background: rgba(59, 130, 246, 0.18);
    border-color: rgba(59, 130, 246, 0.4);
    color: #93c5fd;
}

/* ========== SUB-SERVICES ========== */
.sub-services {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.sub-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 600;
    color: #06b6d4;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 2px;
}

.sub-services span:not(.sub-label) {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 500;
    color: #94a3b8;
    background: rgba(6, 182, 212, 0.06);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(6, 182, 212, 0.12);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sub-services span:not(.sub-label):hover {
    background: rgba(6, 182, 212, 0.12);
    border-color: rgba(6, 182, 212, 0.3);
    color: #67e8f9;
}

/* ========== GALLERY STRIP ========== */
.gallery-strip {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: rgba(17, 24, 39, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px 0;
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollStrip 40s linear infinite;
    padding: 0 20px;
}

.service-right .gallery-track {
    animation-direction: reverse;
}

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

@keyframes scrollStrip {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-slide {
    flex-shrink: 0;
    width: 340px;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.gallery-slide:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-3px);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-slide:hover video {
    opacity: 1;
}

.gallery-slide:hover img {
    opacity: 0;
}

.gallery-slide span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    z-index: 2;
}

/* ========== PROJECTS ========== */
.projects {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 40px;
}

.project-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.project-showcase.reverse .project-media {
    order: 2;
}

.project-showcase.reverse .project-info {
    order: 1;
    text-align: right;
}

.project-showcase.reverse .tech-cloud {
    justify-content: flex-end;
}

.project-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111827;
}

.project-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.project-showcase:hover .project-video-bg {
    opacity: 1;
}

.project-showcase:hover .project-poster {
    opacity: 0;
}

.project-info {
    padding: 20px 0;
}

.project-category {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: #06b6d4;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.project-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
}

.project-info p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.link-underline {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #60a5fa;
    position: relative;
    padding-bottom: 2px;
    margin-top: 8px;
    transition: color 0.2s;
}

.link-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #60a5fa;
    transition: width 0.3s ease;
}

.link-underline:hover {
    color: #93c5fd;
}

.link-underline:hover::after {
    width: 100%;
}

/* ========== NDA NOTICE ========== */
.nda-notice {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 36px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-align: left;
}

.nda-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    opacity: 0.8;
}

.nda-notice p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.7;
    margin: 0;
}

.nda-notice strong {
    color: #cbd5e1;
}

/* ========== TEAM ========== */
.team {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}

.team-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid rgba(59, 130, 246, 0.2);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.team-photo:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.team-cred {
    font-size: 0.85rem;
    color: #3b82f6;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

/* ========== FEEDBACK ========== */
.feedback {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}

.feedback-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}

.feedback-item {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: rgba(59, 130, 246, 0.15);
    line-height: 0;
    font-family: Georgia, serif;
    position: absolute;
    top: 20px;
    left: 0;
}

.feedback-item p {
    font-size: 0.92rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    padding-left: 10px;
}

.feedback-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.feedback-author strong {
    display: block;
    font-size: 0.85rem;
    color: #ffffff;
    font-style: normal;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
}

.feedback-author span {
    font-size: 0.75rem;
    color: #64748b;
    font-style: normal;
}

/* ========== CONTACT ========== */
.contact {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 40px;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.contact-form-side {
    background: #111827;
    padding: 50px;
}

.contact-form-side .section-intro p {
    color: #94a3b8;
    margin-top: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #f1f5f9;
    transition: all 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form select {
    appearance: none;
    cursor: pointer;
}

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

.contact-form .btn-glow {
    margin-top: 4px;
}

.contact-info-side {
    background: linear-gradient(160deg, #1a2456, #0d1b3e);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-info-side h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info-side ul {
    list-style: none;
}

.contact-info-side li {
    padding: 12px 0;
    font-size: 0.95rem;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info-side li:last-child {
    border-bottom: none;
}

.contact-info-side li::before {
    content: '\2713 ';
    color: #60a5fa;
    font-weight: 700;
}

.contact-glow-orb {
    position: absolute;
    width: 250px;
    height: 250px;
    background: #3b82f6;
    filter: blur(80px);
    opacity: 0.15;
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    pointer-events: none;
}

/* ========== FOOTER ========== */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 40px;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
}

.footer-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.footer p {
    font-size: 0.8rem;
    color: #64748b;
}

.footer-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #60a5fa;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #93c5fd;
}

/* ========== RESPONSIVE - TABLET ========== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        min-height: auto;
        padding: 80px 30px 60px;
        gap: 50px;
        text-align: center;
    }

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

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-metrics {
        justify-content: center;
    }

    .hero-visual {
        width: 300px;
        height: 300px;
    }

    .service-header,
    .service-right .service-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 0 30px;
    }

    .service-right .service-header-text p {
        margin-left: 0;
    }

    .service-right .tech-cloud {
        justify-content: center;
    }

    .service-right .sub-services {
        justify-content: center;
    }

    .tech-cloud {
        justify-content: center;
    }

    .sub-services {
        justify-content: center;
    }

    .service-header-text p {
        max-width: 100%;
    }

    .project-showcase,
    .project-showcase.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .project-showcase.reverse .project-media {
        order: -1;
    }

    .project-showcase.reverse .project-info {
        text-align: center;
    }

    .project-showcase.reverse .tech-cloud {
        justify-content: center;
    }

    .project-info {
        text-align: center;
    }

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

    .contact-split {
        grid-template-columns: 1fr;
    }

    .gallery-slide {
        width: 280px;
        height: 180px;
    }

    .nda-notice {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

/* ========== RESPONSIVE - MOBILE ========== */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-inner {
        padding: 0 20px;
    }

    .hero {
        padding: 50px 20px 50px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-visual {
        width: 220px;
        height: 220px;
    }

    .services {
        padding: 60px 0;
    }

    .service-header,
    .service-right .service-header {
        padding: 0 20px;
    }

    .service-header-text h3 {
        font-size: 1.4rem;
    }

    .projects,
    .team,
    .feedback,
    .contact {
        padding: 60px 20px;
    }

    .section-intro h2 {
        font-size: 2rem;
    }

    .project-info h3 {
        font-size: 1.4rem;
    }

    .team-row {
        gap: 40px;
    }

    .team-photo {
        width: 150px;
        height: 150px;
    }

    .feedback-flow {
        grid-template-columns: 1fr;
    }

    .contact-form-side,
    .contact-info-side {
        padding: 30px 24px;
    }

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

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .gallery-slide {
        width: 240px;
        height: 150px;
    }
}